/** * Service for debugging */ export declare class DebugLogger { private readonly name; private readonly data; private readonly DEBUG_MODE; constructor(name: string, data?: Record); /** * Log a key-value pair */ log(key: string, value: unknown): void; /** * Write the debug info to a file */ write(): void; }