import React, { PureComponent } from 'react'; import type { GlobalErrorState } from '../../../client/components/app-router-instance'; import { type AppRouterInstance } from '../../../shared/lib/app-router-context.shared-runtime'; type AppDevOverlayErrorBoundaryProps = { children: React.ReactNode; globalError: GlobalErrorState; }; type AppDevOverlayErrorBoundaryState = { reactError: unknown; }; export declare class AppDevOverlayErrorBoundary extends PureComponent { static contextType: React.Context; context: AppRouterInstance | null; state: AppDevOverlayErrorBoundaryState; static getDerivedStateFromError(error: Error): { reactError: Error; }; componentDidCatch(err: Error): void; unstable_retry: () => void; reset: () => void; render(): string | number | bigint | boolean | Iterable | Promise> | React.ReactPortal | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined; } export {};