import { createContext, useContext } from "react"; export type ToastTone = "success" | "error" | "info"; export interface ToastItem { id: number; tone: ToastTone; title: string; message?: string; } export interface ToastApi { success: (title: string, message?: string) => void; error: (title: string, message?: string) => void; info: (title: string, message?: string) => void; } export const ToastContext = createContext(null); /** Imperative toast notifications. Auto-dismiss after a few seconds. */ export function useToast(): ToastApi { const ctx = useContext(ToastContext); if (!ctx) throw new Error("useToast must be used within "); return ctx; }