import type { SizeType } from '@antdv/ui/es/types'; import type { ExtractPropTypes, PropType } from 'vue'; import type { SpaceSize } from './interface'; export declare function spaceProps(): { prefixCls: StringConstructor; size: { type: PropType; }; direction: any; align: any; wrap: { type: BooleanConstructor; default: boolean; }; }; export declare function spaceCompactItemProps(): { compactSize: PropType; compactDirection: any; isFirstItem: { type: BooleanConstructor; default: boolean; }; isLastItem: { type: BooleanConstructor; default: boolean; }; }; export declare function spaceCompactProps(): { prefixCls: StringConstructor; size: { type: PropType; }; direction: any; align: any; block: { type: BooleanConstructor; default: any; }; }; export type SpaceProps = Partial>>; export type SpaceCompactProps = Partial>>; export type SpaceCompactItemProps = Partial>>;