/**
 * Validates a JSON string.
 * @param {string} jsonString - The JSON string to validate.
 * @returns {boolean} - Returns true if the JSON string is valid, otherwise returns false.
 */
export declare function validateJSON(jsonString: string): boolean;
