export declare class Logger { private static enabled; static configure(enabled: boolean): void; static info(message: string): void; static error(message: string): void; static debug(message: string): void; }