import { Ref, WatchHandle } from 'vue'; import { ControllerKey, OrchestratorArrayValue, PromiseWithComponent } from '../../types/ComponentOrchestratorTypes'; import { BvTriggerableEvent } from '../../utils'; export declare function buildPromise(_id: ControllerKey, store: Ref): { value: PromiseWithComponent; resolve: (value: BvTriggerableEvent) => void; stop: WatchHandle | undefined; }; export declare const _newOrchestratorRegistry: () => { store: Ref; _isOrchestratorInstalled: Ref; _isToastAppend: Ref; }; export declare const useOrchestratorRegistry: () => { store: Ref; _isToastAppend: Ref; _isOrchestratorInstalled: Ref; };