import { AlertProps as MUIAlertProps } from '@mui/material/Alert';
export type AlertProps = {
    title?: string;
} & Omit<MUIAlertProps, "color">;
declare const Alert: React.FunctionComponent<AlertProps>;
export default Alert;
