import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; import type { VmSize } from '../../_interface'; export declare const Props: { /** 是否竖直排列 */ readonly vertical: BasicType; /** 是否禁止换行 */ readonly nowrap: BasicType; /** * 间距尺寸 * * @values large middle small mini * @default null */ readonly spacing: BasicType, VmSize | null>; /** 自定义纵向间距 */ readonly rowGap: BasicType, string | null>; /** 自定义横向间距 */ readonly columnGap: BasicType, string | null>; }; /** space 组件 props 类型 */ export type SpaceProps = ExtractPropTypes;