import { default as React } from 'react'; import { BoxProps } from './box'; export interface FlexProps extends Omit { /** Flex direction */ direction?: 'row' | 'row-reverse' | 'col' | 'col-reverse'; /** Align items */ align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline'; /** Justify content */ justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly'; /** Wrap items */ wrap?: 'nowrap' | 'wrap' | 'wrap-reverse'; /** Gap between items */ gap?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; /** Inline flex */ inline?: boolean; /** Additional className */ className?: string; } /** * Flex Component * * Flexbox layout component extending Box with flex-specific properties. * Provides convenient props for common flexbox patterns. * * @example * ```tsx * * Left * * * ``` * * @example * ```tsx * * Item 1 * Item 2 * * ``` */ export declare const Flex: React.FC; //# sourceMappingURL=flex.d.ts.map