import { SizeProps } from '../common/utils'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * [Item axis arrangement]{@link https://developer.mozilla.org/en-US/docs/Web/CSS/align-items}. */ align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch'; /** * [Item arrangement]{@link https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content}. */ justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between' | 'space-evenly'; /** Whether the space is displayed as an inline box. */ inline?: boolean; /** Whether to reverse the layout. */ reverse?: boolean; /** * HTML tag for rendering the space. * @default 'div' */ tag?: string; /** Whether to layout vertically. */ vertical?: boolean; /** * Whether to exceed the line break. * @default true */ wrap?: boolean; } & SizeProps; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** Content of the space. */ default?: (props: {}) => any; }> & { /** Content of the space. */ default?: (props: {}) => any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };