import type { DefineComponent } from "vue"; /** Flex component props */ export interface FlexProps { align?: string; justify?: string; vertical?: boolean; wrap?: boolean; size?: string | number | any[]; } /** Flex Vue 3 component */ declare const Flex: DefineComponent; export default Flex;