import { LoggerService as NestLoggerService } from '@nestjs/common';
import 'winston-daily-rotate-file';
export declare class LoggerService implements NestLoggerService {
    private readonly logger;
    constructor();
    log(message: string): void;
    error(message: string, trace?: string): void;
    warn(message: string): void;
    debug(message: string): void;
    verbose(message: string): void;
}
