import type { VNode } from 'vue'; import type { DialogOptions } from './type'; type DialogInstance = VNode; export declare const dialog: { open: (config: DialogOptions) => DialogInstance; close: () => void | undefined; }; export {};