import { VNodeTypes } from 'vue'; interface MessageParam { message?: string; offset?: number; duration?: number; appendTo?: string | HTMLElement; } export declare function MSuccess(param?: MessageParam | string): void; export declare function MError(param?: MessageParam | string): void; export declare function MWarn(param?: MessageParam | string): void; interface CreateDialogOption { container?: Element; vnode: VNodeTypes; on?: Record; [key: string]: any; } export declare function createDialog(option: CreateDialogOption): Promise; export declare const tip: (tip: string, result: { resultCode: string; resultError: string; }, callback?: () => void) => void; export {};