import { FC, HTMLAttributes } from 'react';
import { BoxStyledProps } from './styled';
export interface BoxProps extends BoxStyledProps, HTMLAttributes {
color?: string;
flex?: string;
hidden?: boolean;
position?: 'absolute' | 'relative' | 'fixed';
}
export declare const Box: FC;