import type { ReactNode } from 'react'; import React from 'react'; import type Rollbar from 'rollbar'; import type { ErrorEx } from '../ErrorEx.ts'; export interface ThrownErrorBoundaryProps { boundaryName?: string; children: ReactNode; errorComponent?: (e: ErrorEx, boundaryName?: string) => ReactNode; rethrow?: boolean; rollbar?: Rollbar; scope?: string; title?: string; } export interface ThrownErrorBoundaryState { errorEx: ErrorEx | undefined; hasError?: boolean; xyoError?: T; } export declare function ThrownErrorBoundary({ rollbar, ...props }: ThrownErrorBoundaryProps): React.JSX.Element; //# sourceMappingURL=ThrownErrorBoundary.d.ts.map