import { Ref } from 'vue'; import { OrchestratorCreateOptions, PromiseWithComponent, ToastOrchestratorCreateParam, ToastOrchestratorParam } from '../../types/ComponentOrchestratorTypes'; import { BToast } from '../../components'; export declare const useToast: () => { _isToastAppend: Ref; _isOrchestratorInstalled: Ref; store: Ref; create: (obj?: ToastOrchestratorCreateParam, options?: OrchestratorCreateOptions) => PromiseWithComponent; show: (obj?: ToastOrchestratorCreateParam) => PromiseWithComponent; }; /** * @deprecated use useToast() instead. * @returns {ReturnType} The toast controller */ export declare const useToastController: () => { _isToastAppend: Ref; _isOrchestratorInstalled: Ref; store: Ref; create: (obj?: ToastOrchestratorCreateParam, options?: OrchestratorCreateOptions) => PromiseWithComponent; show: (obj?: ToastOrchestratorCreateParam) => PromiseWithComponent; };