import { ILogger, LOG_LEVEL } from './ILogger'; export declare abstract class Logger implements ILogger { private readonly logLevel; constructor(logLevel: LOG_LEVEL); debug(message: string): Promise; info(message: string): Promise; warning(message: string): Promise; error(message: string): Promise; abstract log(message: string, logLevel: LOG_LEVEL): Promise; } //# sourceMappingURL=Logger.d.ts.map