import * as winston from 'winston'; import { InfoInterface } from './contracts/info.interface'; import { LogDataInterface, LoggerInterface } from './contracts/logger.interface'; /** * @depracated */ export declare class InfoLogger implements LoggerInterface { protected data: InfoInterface; constructor(data: InfoInterface); getLogger(): Promise; log(data: LogDataInterface): Promise; isStatic(): boolean; close(): Promise; }