import * as winston from "winston"; import * as Transport from "winston-transport"; import LoggerInterface from "./LoggerInterface"; declare class Logger implements LoggerInterface { logger: winston.Logger; constructor(config: { env: string; path: string; level: string; }); addTransport(transport: Transport): void; info(message: string): void; warn(message: string): void; error(message: string): void; } export default Logger;