export declare class DebugLogger {
    readonly isEnabled: boolean;
    readonly data: Map<string, any>;
    constructor(isEnabled?: boolean);
    add(key: string, value: any): void;
    save(file: string): Promise<void>;
}
