/** * Debug Utilities for Gateway Type 3 * * Provides debug logging that can be toggled via --debug flag * Production mode: Clean, no debug logs * Debug mode: Full verbose logging */ export declare const DEBUG_MODE: boolean; /** * Debug logger - only outputs when DEBUG_MODE is enabled * Usage: debugLog('[Component]', 'message', data) */ export declare const debugLog: (...args: any[]) => void; /** * Always log errors - these should show in both production and debug mode */ export declare const errorLog: (...args: any[]) => void; /** * Always log warnings - these should show in both production and debug mode */ export declare const warnLog: (...args: any[]) => void; //# sourceMappingURL=debug-utils.d.ts.map