import { ExtractPropTypes, PropType } from 'vue'; export declare const flexProps: { align: { type: StringConstructor; }; inline: { type: BooleanConstructor; }; justify: { type: StringConstructor; default: string; }; size: { type: PropType<"small" | "medium" | "large" | number | [number, number]>; default: string; }; vertical: { type: BooleanConstructor; default: boolean; }; wrap: { type: BooleanConstructor; default: boolean; }; theme: { type: PropType; }; themeOverrides: PropType>; }; export type FlexProps = ExtractPropTypes;