import type { Spanwise } from "../client.js"; import type { Instrumentation } from "./types.js"; export type FetchInstrumentationOptions = { /** Additional host -> service name mappings (merged with defaults) */ serviceMappings?: Record; }; export declare class FetchInstrumentation implements Instrumentation { name: string; private originalFetch; private serviceMappings; constructor(options?: FetchInstrumentationOptions); init(client: Spanwise): void; destroy(): void; } //# sourceMappingURL=fetch.d.ts.map