/** * Global debugger configuration object. * Used to enable various debugging features in the soby library. */ export declare const DEBUGGER: { /** Enable debug mode for detailed logging */ debug: boolean; /** Enable test mode */ test: boolean; /** Enable verbose comment debugging */ verboseComment: boolean; /** Enable context comment debugging */ contextComment: boolean; }; export declare class Stack extends Error { constructor(message?: string, startIndex?: number); } export declare const callStack: (msg?: string) => Stack | undefined;