import { JSONArticleData, JSONNode } from '../render/types'; /** * This function transforms the `jsonContent` * from the article API response to a consistent format. * * Ideally the whole `jsonContent` would be structured as JSONNodes * but currently the `jsonContent`is split into `title`, `description` and `body` * which in turn each contains JSONNode data. */ declare const ensureJSONNodeFormat: (data: JSONNode | JSONArticleData) => JSONNode; export { ensureJSONNodeFormat };