import { MessageBoxState } from 'element-plus'; import { VNode } from 'vue'; export interface ModalOptionsEx extends Omit { iconType?: 'warning' | 'success' | 'error' | 'info'; } export declare type IconType = 'success' | 'info' | 'error' | 'warning'; declare function createConfirm(title: string, content: VNode | string, options: any): Promise; /** * @description: message */ export declare function useMessage(): { createMessage: any; createConfirm: typeof createConfirm; }; export {};