/**
 * Function to check if a string is valid CSV
 *
 * @param value The string to check
 * @returns `true` if the string is a valid CSV string, false otherwise
 *
 * @public exported from `@promptbook/utils`
 */
export declare function isValidCsvString(value: string): boolean;
