export declare class CsvFile { private readonly headers; private readonly path; private readonly writeOpts; constructor(opts: any); static write(filestream: any, rows: any, options: any): Promise; static escapeRegExp: (string: any) => any; static replaceAll: (str: any, find: any, replace: any) => any; create(rows: any): Promise; append(rows: any): Promise; read(): Promise; readRows(transformFn: any): import("fast-csv").CsvFormatterStream; pipe(res: any): any; }