/** * Receives an array of either numbers or texts and returns a csv text * @param {(string | number)[] | any} variable Array you want to combine (values) * @param {string} separator Character that separate each value by default is ',' * @returns {string} CSV */ declare const arrayToCSV: (variable: (string | number)[] | any, separator?: string) => string; export { arrayToCSV };