/**
 * Initialize debug logging based on config
 */
export declare function initDebugLogging(enabled: boolean): void;
/**
 * Log a debug message to the log file
 */
export declare function debugLog(message: string): void;
/**
 * Log multiple lines with proper formatting
 */
export declare function debugLogMultiline(title: string, content: string): void;
/**
 * Log an object using Node.js inspect with reasonable depth
 */
export declare function debugLogObject(title: string, obj: unknown): void;
/**
 * Log error with stack trace
 */
export declare function debugLogError(context: string, error: unknown): void;
