import './errorStyle.css'; /** * Global error notification renderer. * * This component: * - consumes the `ErrorContext` to display all current errors as dismissible notifications. * - subscribes to global `window` events (`error` and `unhandledrejection`) * to automatically capture and display unexpected runtime errors. * * It ignores `HandledError` instances to prevent duplicate notifications when * the `throwError` utility is used. */ export declare const ErrorNotifications: () => import("react/jsx-runtime").JSX.Element | null;