import { SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { AllSystemProps } from './system-props'; declare const defaultElement = "div"; export declare type FlexProps = SxProp & AllSystemProps; declare type FlexComponent = ForwardRefComponent; export declare const Flex: FlexComponent; export {};