import React from 'react'; export interface BoxProps extends React.HTMLAttributes { /** * Set the element of box */ children?: React.ReactNode; /** * Set the background of box */ background?: string; /** * Set the padding of box */ padding?: string; /** * Set the margin of box */ margin?: string; /** * Set the border of box */ border?: string; /** * Set the border-radius of box */ radius?: string; /** * Set the box-shadow of box */ boxShadow?: string; } export declare const Box: React.FC;