/**
 * Debug logging utility that can be disabled in production
 * Set DEBUG environment variable or window.__DEBUG__ to enable logging
 */
export declare const debug: {
    log: (...args: any[]) => void;
    warn: (...args: any[]) => void;
    error: (...args: any[]) => void;
    info: (...args: any[]) => void;
    debug: (...args: any[]) => void;
};
export declare const enableDebug: () => void;
export declare const disableDebug: () => void;
