/** * It convert a csv to an array * @param {string} csv Text from which to extract the array * @param {string} separator Separator that define end of value * @returns {string} return an array with the values of the string */ declare const csvToArray: (csv: string, separator?: string) => Array; export { csvToArray };