import { ConfigService } from './config.service';
export declare class LoggerService {
    private readonly configService;
    private readonly logError;
    private readonly logWarn;
    private readonly logInfo;
    private readonly logDebug;
    private readonly noop;
    constructor(configService: ConfigService);
    readonly error: (message?: any, ...optionalParams: any[]) => void;
    readonly warn: (message?: any, ...optionalParams: any[]) => void;
    readonly info: (message?: any, ...optionalParams: any[]) => void;
    readonly debug: (message?: any, ...optionalParams: any[]) => void;
    throw(message?: any, ...optionalParams: any[]): never;
}
