import { LimitManagerInternal } from "../../managers/EmbraceLimitManager/types.cjs";
import { PerformanceManager } from "../../utils/PerformanceManager/types.cjs";
import { DiagLogger } from "@opentelemetry/api";
import { InstrumentationConfig } from "@opentelemetry/instrumentation";

//#region src/instrumentations/EmbraceInstrumentationBase/types.d.ts
interface EmbraceInstrumentationBaseArgs<ConfigType extends InstrumentationConfig = InstrumentationConfig> {
  instrumentationName: string;
  instrumentationVersion: string;
  config: ConfigType;
  diag?: DiagLogger;
  perf?: PerformanceManager;
  limitManager?: LimitManagerInternal;
}
//#endregion
export { EmbraceInstrumentationBaseArgs };
//# sourceMappingURL=types.d.cts.map