export interface ToastConfigType { text: string; icon: string; time: number; } export declare class ToastConfig { /** * 成功配置项 */ success?: ToastConfigType; /** * 加载中配置项 */ loading?: ToastConfigType; }