/// import { InfoBoxProps } from './types'; declare const InfoBox: { (props: InfoBoxProps): JSX.Element; defaultProps: { label: string; backgroundColor: string; borderColor: string; icon: boolean; style: {}; textStyle: {}; }; }; export default InfoBox;