import type { ToastProps } from '@nuxt/ui'; type NotificationOptions = Omit & { onClick?: (toast: Omit) => void; }; interface UseNotificationReturn { success: (message: string, options?: NotificationOptions) => void; error: (message: string, options?: NotificationOptions) => void; warning: (message: string, options?: NotificationOptions) => void; info: (message: string, options?: NotificationOptions) => void; } export declare function useNotification(): UseNotificationReturn; export {};