import { DialogId, DialogInstance } from '../../factories'; import { Plugin, Reactive, Ref, ShallowReactive } from 'vue'; type DialogRegistry = ShallowReactive>>>; export declare function useDialogPlugin(): { registry: DialogRegistry; stack: Ref; trigger: Ref; lastOpened: Ref; }; export declare const DialogPlugin: Plugin<[]>; export {};