import React from "react";
import { AlertType } from "./types";
interface AlertProps {
    alerts: AlertType[];
    removeAlert: (index: number) => void;
    duration: number;
    muiAlertProps: object;
    muiStackProps: object;
}
declare const Alert: React.FC<AlertProps>;
export default Alert;
