import { JSONObject } from "../types/JSONObject"; /** * Flatten an object transform: * { * title: "kuzzle", * info : { * tag: "news" * } * } * * Into an object like: * { * title: "kuzzle", * info.tag: news * } * * @param {Object} target the object we have to flatten * @returns {Object} the flattened object */ export declare function flattenObject(target: JSONObject): JSONObject;