export declare class CsvWriter {
    private readonly filePath;
    constructor(filePath: string);
    writeRow(rows: string[]): void;
}
