import { FC, HTMLAttributes } from 'react'; declare const Box: FC; export interface BoxProps extends HTMLAttributes { /** * mt - sets the top margin */ mt?: number; /** * mt - sets the bottom margin */ mb?: number; /** * mt - sets the right margin */ mr?: number; /** * mt - sets the left margin */ ml?: number; /** * mt - sets the horizontal margin */ mh?: number; /** * mt - sets the vertical margin */ mv?: number; /** * mt - sets the margin on all sides */ m?: number; /** * mt - sets the top padding */ pt?: number; /** * mt - sets the bottom padding */ pb?: number; /** * mt - sets the right padding */ pr?: number; /** * mt - sets the left padding */ pl?: number; /** * mt - sets the horizontal padding */ ph?: number; /** * mt - sets the vertical padding */ pv?: number; /** * mt - sets the padding for all sides */ p?: number; /** * block - specifies if Box should span full width */ block?: boolean; } export { Box };