import React from "react"; import "./Alert.scss"; export declare enum TypeAlert { error = "error", warning = "warning", success = "success", info = "info" } interface AlertProps { title: string; subtitle: string; onClose?: () => void; type?: TypeAlert; } declare const Alert: React.FC; export default Alert;