/** * Checks if the string is valid JSON (note: uses JSON.parse). * If given value is not a string, then it returns false. */ export declare function isJSON(value: string): boolean;