import { Component, AsyncComponentLoader } from 'vue';
import { DialogProps } from 'element-plus';

export type OpenModalOptions<T = any> = {
    title?: string;
    modalProps?: Partial<DialogProps>;
    content: Component | AsyncComponentLoader | string | boolean | number;
    contentProps?: T;
};
export declare const openModal: (options?: OpenModalOptions) => void;
