import { EmbraceInstrumentationBase } from "../../EmbraceInstrumentationBase/EmbraceInstrumentationBase.cjs";
import { GlobalExceptionInstrumentationArgs } from "./types.cjs";

//#region src/instrumentations/exceptions/GlobalExceptionInstrumentation/GlobalExceptionInstrumentation.d.ts
declare class GlobalExceptionInstrumentation extends EmbraceInstrumentationBase {
  private readonly _onErrorHandler;
  private readonly _onUnhandledRejectionHandler;
  constructor({
    diag,
    perf
  }?: GlobalExceptionInstrumentationArgs);
  disable(): void;
  enable(): void;
}
//#endregion
export { GlobalExceptionInstrumentation };
//# sourceMappingURL=GlobalExceptionInstrumentation.d.cts.map