/// export type FlexProps = React.ComponentPropsWithRef<'div'> & { gap?: string; direction?: 'row' | 'column'; align?: 'center' | 'start' | 'end' | 'stretch' | 'baseline'; justify?: 'center' | 'start' | 'end' | 'space-between' | 'space-around' | 'space-evenly'; wrap?: 'wrap' | 'nowrap' | 'wrap-reverse'; width?: string; }; export type SubFlexProps = React.ComponentPropsWithRef<'div'> & { gap?: string; width?: string; }; declare const FlexCenter: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare const FlexBetween: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare const FlexColumn: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare const FlexRow: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { FlexCenter, FlexBetween, FlexColumn, FlexRow }; export declare const Flex: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { Center: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; Between: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; Column: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; Row: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; };