import React from 'react'; export declare type AlertType = 'default' | 'success' | 'danger' | 'warning'; export interface AlertProps { /**标题 */ title: string; /**描述 */ description?: string; /**类型 四种可选 针对四种不同的场景 */ type?: AlertType; /**关闭alert时触发的事件 */ onClose?: () => void; /**是否显示关闭图标*/ closable?: boolean; } /** * 用于页面中展示重要的提示信息。 点击右侧的叉提示自动消失 * ### 引用方法 * * ~~~js * import { Alert } from 'jw-ui-react' * ~~~ */ export declare const Alert: React.FC; export default Alert;