declare type Overflow = 'auto' | 'hidden'; export declare type FlexProps = { flex?: boolean | number; flexWrap?: 'wrap' | 'wrap-reverse' | 'nowrap' | 'unset'; direction?: 'row' | 'column'; justify?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around'; align?: 'stretch' | 'flex-start' | 'flex-end' | 'center' | 'baseline'; gap?: boolean | number | string; margin?: boolean | number | string; padding?: boolean | number | string; width?: number | string; height?: number | string; maxWidth?: number | string; maxHeight?: number | string; overflow?: boolean | Overflow; }; export declare const flexStyle: ({ overflow, justify, align, direction, flex, flexWrap, gap, padding, margin, width, height, maxWidth, maxHeight, }: FlexProps) => any; export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, FlexProps, never>; export {};