import { BoxProps } from './interfaces';
export { BoxProps };
export default function Box({ variant, margin, padding, display, textAlign, float, fontSize, fontWeight, color, children, ...rest }: BoxProps): JSX.Element;
