/// import { AlertProps } from '@mui/material/Alert'; interface IAlertProps extends AlertProps { } export default function Alert({ ...rest }: IAlertProps): JSX.Element; export {};