import { Component, type ErrorInfo as ReactErrorInfo, type PropsWithChildren, type ReactNode } from "react"; interface ErrorBoundaryProps { fallback?: ReactNode; } interface ErrorState { hasError: boolean; } export declare class ExceptionlessErrorBoundary extends Component, ErrorState> { constructor(props: Readonly>); static getDerivedStateFromError(): ErrorState; componentDidCatch(error: Error, errorInfo: ReactErrorInfo): Promise; render(): ReactNode; } export {}; //# sourceMappingURL=ExceptionlessErrorBoundary.d.ts.map