import type { DriverConfig } from "../types/driver"; /** Fires the onRequest observability hook when one is configured. */ export declare function emitRequest(config: DriverConfig, serviceId: string, url: string, method: string): void; /** Fires the onResponse observability hook when one is configured. */ export declare function emitResponse(config: DriverConfig, serviceId: string, url: string, method: string, status: number, duration: number, ok: boolean): void;