import type { ToastActionElement } from "../../components/ui"; export interface UseNotificationsResult { showSuccess: (title: string, description?: string, action?: ToastActionElement) => void; showError: (title: string, description?: string, error?: Error | null) => void; } export declare const useNotifications: () => UseNotificationsResult; //# sourceMappingURL=useNotifications.d.ts.map