import { type ElementType } from 'react'; import { type PolymorphicComponentProps } from '@quotalab/headless-hooks'; import { type FlexRootVariants } from './Flex.css'; import { type MinMaxSizeProps } from '../../../types'; declare const DEFAULT_ELEMENT = "div"; export type FlexOwnProps = FlexRootVariants & MinMaxSizeProps; export type FlexProps = PolymorphicComponentProps; type FlexComponent = (props: FlexProps) => React.ReactNode; export declare const Flex: FlexComponent; export {}; //# sourceMappingURL=Flex.d.ts.map