/** * Ensures format of the data complies with the JSON specs and can be serialized. * @param data * @throws * - INVALID_JSON_DATA: if the data is not an object or an array. */ declare const validateJSONData: (data: T) => void; export { validateJSONData };