12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- declare const _default: import("vue").DefineComponent<{
- /**
- * @description layout direction for child elements
- */
- direction: {
- type: StringConstructor;
- };
- }, {
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
- /**
- * @description layout direction for child elements
- */
- direction: {
- type: StringConstructor;
- };
- }>> & {
- [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
- }>>;
- slots: Readonly<{
- [name: string]: import("vue").Slot | undefined;
- }>;
- ns: {
- namespace: import("vue").Ref<string>;
- b: (blockSuffix?: string) => string;
- e: (element?: string | undefined) => string;
- m: (modifier?: string | undefined) => string;
- be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
- em: (element?: string | undefined, modifier?: string | undefined) => string;
- bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
- bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
- is: {
- (name: string, state: boolean | undefined): string;
- (name: string): string;
- };
- cssVar: (object: Record<string, string>) => Record<string, string>;
- cssVarName: (name: string) => string;
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
- cssVarBlockName: (name: string) => string;
- };
- isVertical: import("vue").ComputedRef<boolean>;
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
- /**
- * @description layout direction for child elements
- */
- direction: {
- type: StringConstructor;
- };
- }>>, {}>;
- export default _default;
|