import type { ReactNode } from "react"; import type { ErrorBoundaryFallbackProps } from "./types.js"; /** * Default error boundary fallback component * * This is rendered when an error occurs and no custom error boundary * is defined in the route tree. Shows a simple "Internal Server Error" * message with the error details in development. */ export declare function DefaultErrorFallback({ error, }: ErrorBoundaryFallbackProps): ReactNode; //# sourceMappingURL=default-error-boundary.d.ts.map