export declare class Logger {
    static instance: Logger;
    private isEnabled;
    private constructor();
    static getInstance(): Logger;
    enable(): void;
    disable(): void;
    debug(data: any): void;
}
