import type { ElMessageBoxOptions } from 'element-plus'; /** messageBox 确认框等. */ export declare const showAlert: (message: string, title?: string | undefined, options?: ElMessageBoxOptions['type'] | ElMessageBoxOptions) => Promise; export declare const showConfirm: (message: string, title?: string | undefined, options?: ElMessageBoxOptions['type'] | ElMessageBoxOptions) => Promise; export declare const showPrompt: (message: string, title?: string | undefined, options?: ElMessageBoxOptions['type'] | ElMessageBoxOptions) => Promise;