import { ExtractPropTypes, PropType } from 'vue'; export declare type SpaceSize = number | string; export declare type SpaceAlign = 'start' | 'end' | 'center' | 'baseline'; declare const spaceProps: { align: PropType; direction: { type: PropType<"vertical" | "horizontal">; default: string; }; size: { type: PropType; default: number; }; wrap: BooleanConstructor; fill: BooleanConstructor; }; export declare type SpaceProps = ExtractPropTypes; declare const _default: import("vue").DefineComponent<{ align: PropType; direction: { type: PropType<"vertical" | "horizontal">; default: string; }; size: { type: PropType; default: number; }; wrap: BooleanConstructor; fill: BooleanConstructor; }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; direction: { type: PropType<"vertical" | "horizontal">; default: string; }; size: { type: PropType; default: number; }; wrap: BooleanConstructor; fill: BooleanConstructor; }>>, { fill: boolean; size: string | number | [SpaceSize, SpaceSize]; wrap: boolean; direction: "vertical" | "horizontal"; }>; export default _default;