import { TransportFactory } from '../interfaces';
import { ConsoleTransportInstance } from 'winston/lib/winston/transports';
export declare class NestTransportFactory implements TransportFactory {
    private readonly level;
    private readonly appName;
    constructor(level: string, appName?: string);
    createTransport(): ConsoleTransportInstance;
}
