import { RabbitLoggerService } from './rabbit.logger.service'; export declare class LoggerService implements LoggerService { private rabbitLoggerService; private readonly LEVEL_LOG; private winston; private consoleLogFormat; private microService; private serviceName; private rabbitInited; constructor(rabbitLoggerService: RabbitLoggerService); setLoggerRabbitService(rabbitLoggerService: any): void; setServiceName(serviceName: string): void; log(message: string): void; logObject(object: any): void; errorRequest(exception: any, stacktrace: string, timestamp: any, status: any, message: string, request: any): void; error(message: any, stacktrace?: any): void; exceptionError(exception: any): void; warn(message: string, stacktrace?: any): void; debug(message: string, stacktrace?: any): void; verbose(message: string, stacktrace?: any): void; }