import { default as React } from 'react'; import { ALIGN_MAPPER, GAP, JUASTIFY_MAPPER } from '../../constants/constant'; import { ElementType } from '../../types/type'; declare const DIRECTION_MAPPER: { row: string; col: string; row_reverse: string; col_reverse: string; }; declare const WRAP_MAPPER: { wrap: string; nowrap: string; wrap_reverse: string; }; export interface FlexProps extends React.HTMLAttributes { children: React.ReactNode; gap?: keyof typeof GAP; direction?: keyof typeof DIRECTION_MAPPER; justify?: keyof typeof JUASTIFY_MAPPER; align?: keyof typeof ALIGN_MAPPER; wrap?: keyof typeof WRAP_MAPPER; className?: string; element?: ElementType; } export declare const Flex: ({ children, gap, direction, justify, align, wrap, className, element, ...props }: FlexProps) => React.JSX.Element; export default Flex; //# sourceMappingURL=Flex.d.ts.map