/** * Checks if verbose debugging is enabled. */ export declare function isVerbose(): boolean; /** * Enables or disables verbose debugging. */ export declare function setVerbose(enabled: boolean): void; /** * Logs a debug message with a timestamp and tag if verbosity is enabled. * * @param tag The tag to identify the source (e.g., 'HTTP', 'NET', 'TLS') * @param message The message to log */ export declare function debugLog(tag: string, message: string): void; //# sourceMappingURL=Logger.d.ts.map