import React from "react"; interface BaseAlertProps { className?: string; type?: "success" | "info" | "warning" | "error"; message?: string; } declare type NaticeDivProps = BaseAlertProps & React.BaseHTMLAttributes; export declare type AlertProps = Partial; declare const Alert: React.FC; export default Alert;