import { ITransport } from '../transport';
export declare class FileTransport implements ITransport {
    filePath: string;
    fileDescriptor: number;
    constructor(filepath: string);
    write(line: string): void;
}
