/**
 * Function isValidJsonString will tell you if the string is valid JSON or not
 *
 * @param value The string to check
 * @returns `true` if the string is a valid JSON string, false otherwise
 *
 * @public exported from `@promptbook/utils`
 */
export declare function isValidJsonString(value: string): boolean;
