/**
* Functionto check if a stringis valid CSV
*
* @param value The stringto check
* @returns `true` if the stringis a valid CSV string, false otherwise
*
* @public exported from `@promptbook/utils`
*/
export declarefunction isValidCsvString(value: string): boolean;