import { UserActionInstrumentationConfig } from "./types.js"; import { InstrumentationBase } from "@opentelemetry/instrumentation"; //#region src/user-action/instrumentation.d.ts /** * This class automatically instruments different User Actions within the browser. */ declare class UserActionInstrumentation extends InstrumentationBase { private _onClickHandler?; constructor(config?: UserActionInstrumentationConfig); protected init(): never[]; private _getMouseButtonFromMouseEvent; private onClick; enable(): void; disable(): void; } //#endregion export { UserActionInstrumentation }; //# sourceMappingURL=instrumentation.d.ts.map