/// import { EmptyStatePropsType } from './types'; declare const EmptyState: { (props: EmptyStatePropsType): JSX.Element; defaultProps: { topSection: { exists: boolean; }; middleSection: { exists: boolean; titleText: string; supplementaryText: string; backgroundColor: string; splashImageURL: string; fontColor: string; customStyles: {}; }; bottomSection: { exists: boolean; }; }; }; export default EmptyState;