import { Options } from '@conciergerie.dev/vue-toaster'; import { VNode, RendererNode, RendererElement } from 'vue'; export declare function useToast(): { toast: { show(message: string, options?: Options): { vNode: VNode; destroy: () => void; el: Element | null; }; clear(): void; success(message: string, options?: Options): { vNode: VNode; destroy: () => void; el: Element | null; }; error(message: string, options?: Options): { vNode: VNode; destroy: () => void; el: Element | null; }; info(message: string, options?: Options): { vNode: VNode; destroy: () => void; el: Element | null; }; warning(message: string, options?: Options): { vNode: VNode; destroy: () => void; el: Element | null; }; }; }; //# sourceMappingURL=useToast.d.ts.map