/** * Parses a single line of CSV-formatted strings into an array of trimmed string values. * * @param csvStingsLine - A string representing a single line of comma-separated values. * @returns An array of strings, each representing a trimmed value from the CSV line. */ export declare const csvParseStrings: (csvStingsLine: string) => string[]; /** * Parses a comma-separated string of numbers into an array of numbers. * * @param csvNumbersLine - A string containing numbers separated by commas (e.g., "1, 2, 3.5"). * @returns An array of numbers parsed from the input string. */ export declare const csvParseNumbers: (csvNumbersLine: string) => number[];