import { FC } from "react"; declare type AlertType = "success" | "info" | "warning" | "error"; export interface AlertProps { type: AlertType; show: boolean; onClose: (event: any) => void | undefined; message: string; } declare const Alert: FC; export default Alert;