/** * Parses a string from a comma separated CSV file and returns an array of values. * @param {string} currentArrayString - The string to parse. * @returns {array} - Returns an array of values. */ declare const parseCSVRow: (currentArrayString: string) => string[]; export default parseCSVRow; //# sourceMappingURL=parseCSVRow.d.ts.map