import { LoggerService } from '@nestjs/common';
import { ILoggerOptions } from './interfaces/logger-options.interface';
export declare class NestLogger implements LoggerService {
    private readonly logger;
    constructor(options: ILoggerOptions);
    error(message: any, trace?: string, context?: string): any;
    log(message: any, context?: string): any;
    warn(message: any, context?: string): any;
    debug(message: any, context?: string): any;
    verbose(message: any, context?: string): any;
}
