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