import { ToastNotification } from '../../helpers/global/toast'; /** * Set up a new global toast manager/renderer (don't use this in multiple components that live at the same time) */ export declare function useGlobalToastManager(): { currentNotification: import('vue').ComputedRef<{ title?: string | undefined; description?: string | undefined; type: import('../../helpers/global/toast').ToastNotificationType; cta?: { title: string; url?: string | undefined; onClick?: ((e: MouseEvent) => void) | undefined; } | undefined; autoClose?: boolean | undefined; id?: string | undefined; } | null>; dismiss: () => void; }; /** * Trigger global toast notifications */ export declare function useGlobalToast(): { triggerNotification: (notification: ToastNotification) => void; };