import { ReactNode } from 'react';
import { FlexType, SizeType, SpacingType } from '../../../types/styleType';
export interface IFlexProps extends React.HTMLAttributes<HTMLElement>, FlexType, SizeType, SpacingType {
    as?: React.ElementType<any> | undefined;
    children?: ReactNode;
    bgColor?: string;
}
declare const Flex: import("react").ForwardRefExoticComponent<IFlexProps & import("react").RefAttributes<any>>;
export default Flex;
