import React from 'react'; import { type BoxElement, type BoxProps } from '../Box'; import type { PolymorphicRef } from '../types/polymorphic'; export type FlexProps = Omit, 'display' | 'flexDirection' | 'alignItems' | 'justifyContent' | 'flexWrap' | 'inline' | 'direction' | 'align' | 'justify' | 'wrap'> & { inline?: boolean; direction?: React.CSSProperties['flexDirection']; align?: React.CSSProperties['alignItems']; justify?: React.CSSProperties['justifyContent']; wrap?: React.CSSProperties['flexWrap']; }; type FlexComponent = ((props: Readonly> & { ref?: PolymorphicRef; }) => React.ReactElement | null) & { displayName?: string; }; declare const Flex: FlexComponent; export default Flex; //# sourceMappingURL=index.d.ts.map