import * as React from 'react'; import { IFlexShorthandProps } from '../../enhancers/flex'; import { PolymorphicComponentProps } from '../Box'; export declare type FlexOwnProps = IFlexShorthandProps & { /** * If `true`, will render as `inline-flex` rather than `flex` */ inline?: boolean; }; export declare type FlexProps = PolymorphicComponentProps; declare const defaultElement = "div"; export declare const Flex: (props: FlexProps) => JSX.Element; export {};