import * as React from 'react'; import { BaseProps, BaseHtmlProps } from "../../../utils/types"; export declare type FlexDirection = 'row' | 'column' | 'row-reverse' | 'column-reverse'; export declare type FlexJustifyContent = 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly'; export declare type FlexAlignItems = 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch'; export declare type FlexWrap = 'wrap' | 'nowrap' | 'wrap-reverse'; export declare type FlexGap = 'spacing-10' | 'spacing-20' | 'spacing-30' | 'spacing-40' | 'spacing-60' | 'spacing-80' | 'spacing-120' | 'spacing-160'; export declare type ResponsiveValue = T | { xs?: T; sm?: T; md?: T; lg?: T; xl?: T; }; export interface FlexProps extends BaseProps, Omit, 'wrap'> { direction?: ResponsiveValue; justifyContent?: ResponsiveValue; alignItems?: ResponsiveValue; wrap?: ResponsiveValue; gap?: ResponsiveValue; columnGap?: ResponsiveValue; rowGap?: ResponsiveValue; children?: React.ReactNode; } export declare const Flex: { (props: FlexProps): React.JSX.Element; displayName: string; defaultProps: { direction: string; justifyContent: string; alignItems: string; wrap: string; }; }; export default Flex;