import React from 'react'; export declare type AlertType = 'default' | 'success' | 'warning' | 'danger'; interface BaseAlertProps { className?: string; description?: string; alType?: AlertType; closable?: boolean; onClose?: () => void; } declare type requireProps = { title: string; }; declare type DivAlert = BaseAlertProps & React.BaseHTMLAttributes; export declare type AlertProps = Partial & requireProps; /** #### Alert消息提醒使用方式 ~~~ js import { Alert } from 'hongguang-style' ~~~ */ export declare const Alert: React.FC; export {};