import { FC } from 'react'; import type { FlexboxProps } from 'styled-system'; import type { BoxProps } from '../Box'; export type FlexProps = FlexboxProps & BoxProps; export declare const Flex: FC;