/** * Build an error-boundary chain element bound to `fallback` (a route's `_error` component). nifra's * client codegen inserts it before the page in the matched chain; a render error in the subtree renders * `fallback` with `{ data: { name, message } }` instead of crashing the app. DOM-transparent (it renders * its children directly - no wrapper element), so it adds no markup and never disturbs hydration. */ export declare function errorBoundary(fallback: unknown): unknown; //# sourceMappingURL=error.d.ts.map