import { CriticalErrorBoundary, CriticalErrorBoundaryProps } from "./CriticalErrorBoundary"; interface RouterErrorBoundaryProps extends CriticalErrorBoundaryProps { path?: string; } export declare class RouterErrorBoundary extends CriticalErrorBoundary { static MINIMUM_RESTART_DELAY: number; constructor(props: RouterErrorBoundaryProps); protected handleError(error: Error, info: { componentStack: string; }): void; render(): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined; } export {};