import { ToasterProps } from 'sonner'; /** * Global toast notification injector (ephemeral notifications). * * @description * Wraps the `sonner` library with Xertica UI Tailwind styles and automatic * theme detection (light/dark). Renders toast notifications at the app level. * * @ai-rules * 1. `` must be injected ONCE in the entire app (e.g., in `App.tsx`). NEVER inside a page component. * 2. To show a toast, import `{ toast }` from `'sonner'` and call `toast.success("Saved!")` — do NOT re-render ``. * 3. Use toasts ONLY for global feedback ("Item saved", "Connection error"). Local form errors go in ``. */ declare const Toaster: ({ theme, ...props }: ToasterProps) => import("react/jsx-runtime").JSX.Element; export { Toaster };