import { BoxOwnProps, BoxProps } from './Box';
import { ForwardRef } from './types';
export declare type FlexOwnProps = BoxOwnProps;
export declare type FlexProps = BoxProps;
/**
 * Use the Flex component to create flexbox layouts.
 * @see https://theme-ui.com/components/flex
 */
export declare const Flex: ForwardRef<HTMLElement, FlexProps>;
