import { StyleProps } from './styles'; type DivProps = Omit, 'style'>; export interface FlexProps extends DivProps, StyleProps<[FlexProps]> { /** Flex direction */ dir: 'col' | 'row'; /** Gap between elements */ gap?: string | number; /** Flex wrap */ wrap?: boolean; /** Flex align */ align?: string; /** Flex justify */ justify?: string; children: React.ReactNode; } declare const Flex: import("react").ForwardRefExoticComponent>; declare const Row: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare const Col: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { Flex, Row, Col };