import React from 'react';
import { AlertProps } from '@mui/material';
export interface Props extends AlertProps {
    title: string;
    description: string;
    status?: AlertProps['severity'];
}
declare const OnAlert: React.FC<Props>;
export default OnAlert;
