import { FC } from 'react'; import PropTypes, { InferProps } from 'prop-types'; declare const propTypes: { /** Content of the box */ children: PropTypes.Validator; /** Use the full size of the box. */ noPadding: PropTypes.Requireable; /** Title to the box */ title: PropTypes.Requireable; }; declare type Props = InferProps; declare const Box: FC; export default Box;