import { Transport } from '../../transports/transport';
import { FileTransportConfig } from './file.transport.config';
export declare class FileTransport extends Transport {
config: FileTransportConfig;
constructor(config: FileTransportConfig);
protected pass(message: string): void;
}