import { ErrorsInstrumentationConfig } from "./types.js"; import { InstrumentationBase } from "@opentelemetry/instrumentation"; //#region src/errors/instrumentation.d.ts declare class ErrorsInstrumentation extends InstrumentationBase { private _isEnabled; private _onErrorHandler?; constructor(config?: ErrorsInstrumentationConfig); protected init(): never[]; enable(): void; disable(): void; private _onError; private _applyCustomAttributes; } //#endregion export { ErrorsInstrumentation }; //# sourceMappingURL=instrumentation.d.ts.map