import { Logger } from './logger'; export declare class LoggerConsole implements Logger { private type; constructor(type: string); Debug(message: string, extra?: { [key: string]: any; }): void; Info(message: string, extra?: { [key: string]: any; }): void; Warning(message: string, extra?: { [key: string]: any; }): void; Error(message: string, extra?: { [key: string]: any; }): void; private output; }