import type { AlertProps as MuiAlertProps } from '@mui/material';
export interface AlertProps extends MuiAlertProps {
    onClose?: () => void;
}
