/// <reference types="react" />
import { AlertProps as MUIAlertProps } from '@material-ui/lab/Alert';
interface AlertProps extends MUIAlertProps {
}
declare const Alert: {
    (props: AlertProps): JSX.Element;
    displayName: string;
};
export default Alert;
