export declare const operationConfirm: (msg: string) => Promise; /** * 消息提 * @param msg 消息内容 * @param type 类型 * @param duration 持续时间 * @param title 标题 * @param position 位置 */ export declare const message: (msg: string, type?: any, duration?: number, title?: string, position?: any) => void; /** * 成功提示 * @param msg 消息内容 */ export declare const success: (msg: string) => void; /** * 警告提示 * @param msg 消息内容 */ export declare const warning: (msg: string) => void; /** * 错误提示 * @param msg 消息内容 */ export declare const error: (msg: string) => void;