interface AlertOptions { text: string; type?: 'warn-primary' | 'warn' | 'default' | 'tips-primary' | 'tips'; showIcon?: boolean; showClose?: boolean; duration?: number; onClose?: () => void; } export declare function alert(options: AlertOptions): () => void; export {};