import { InstrumentationBase, InstrumentationModuleDefinition } from '@opentelemetry/instrumentation'; import { InstrumentationConfig } from '@opentelemetry/instrumentation'; export interface OllamaInstrumentationConfig extends InstrumentationConfig { } export default class OpenlitOllamaInstrumentation extends InstrumentationBase { constructor(config?: OllamaInstrumentationConfig); protected init(): void | InstrumentationModuleDefinition | InstrumentationModuleDefinition[]; manualPatch(ollama: any): void; protected _patch(moduleExports: any): void; protected _unpatch(moduleExports: any): void; }