import type { FallbackProps } from './error-boundary'; /** * Full-screen fallback for root-level crashes. * Shown when a provider or the app shell itself throws. */ export declare function AppErrorFallback({ error, reset }: FallbackProps): import("react/jsx-runtime").JSX.Element; /** * Page-area fallback. Shown when a lazy chunk fails to load or a page * component throws. The app shell (header, sidebar) remains intact. */ export declare function PageErrorFallback({ error, reset }: FallbackProps): import("react/jsx-runtime").JSX.Element; /** * Compact inline fallback for section-level errors (data tables, charts, * the assistant panel, etc.). Prevents one broken section from crashing the page. */ export declare function SectionErrorFallback({ error, reset }: FallbackProps): import("react/jsx-runtime").JSX.Element;