import * as React$1 from "react"; import { PropsWithChildren } from "react"; //#region src/instrumentations/exceptions/react/EmbraceErrorBoundary/EmbraceErrorBoundary.d.ts type EmbraceErrorBoundaryProps = { fallback: () => React$1.ReactNode; }; type EmbraceErrorBoundaryState = { hasError: boolean; }; declare class EmbraceErrorBoundary
> extends React$1.Component
{
private readonly _logManager;
constructor(props: P);
static getDerivedStateFromError(): {
hasError: boolean;
};
componentDidCatch(error: Error, errorInfo: React$1.ErrorInfo): void;
render(): string | number | bigint | boolean | React$1.ReactElement