import { AlertProps } from '@mui/material'; interface NoDataAlertProps { title?: string; body?: string; severity?: AlertProps['severity']; } export declare function NoDataAlert({ title, body, severity, }: NoDataAlertProps): import("react/jsx-runtime").JSX.Element; export {};