/** * Debug Logging Utilities * * This module provides debug logging capabilities for API requests and responses, * including request timing and detailed logging of HTTP interactions. */ import type { DebugLogger } from "./types"; export declare function createDebugLogger(enabled: boolean): DebugLogger; export declare function censorHeaders(headers?: HeadersInit): Record | undefined; export declare function createDebugFetch(options: { originalFetch: typeof globalThis.fetch; debugLog: DebugLogger; }): (input: RequestInfo | URL, options?: RequestInit) => Promise; //# sourceMappingURL=debug.d.ts.map