/** * csv parser, following (largely) RFC4180 rules, with some extensions. * specifically: * * - lines should end with CRLF, but we support CR * - we do not support header (atm) * - variable-length records are supported * - any field may be quoted * - quoted fields can contain newlines and commas * - use two double-quotes to escape a double quote * */ export declare const ParseCSV: (text: string, delimiter?: string) => string[][];