import { ReactElement } from 'react'; import { SxProps } from '@mui/material'; import { Theme } from '../../theme/muiTheme'; export interface Props { message: string; icon?: JSX.Element; sx?: SxProps; children?: ReactElement; } declare const EmptyState: ({ message, icon, children, sx, }: Props) => JSX.Element; export { EmptyState };