/** * Flattens a JSON object according to a list of JSON paths. * @param json - The JSON object to flatten * @param jsonPaths - The list of JSON paths to flatten * @returns A mapping of json pointers to their values */ export declare function flattenJson(json: any, jsonPaths: string[]): Record; /** * Flattens a JSON object according to a list of JSON paths, only including strings * @param json - The JSON object to flatten * @param jsonPaths - The list of JSON paths to flatten * @returns A mapping of json pointers to their values */ export declare function flattenJsonWithStringFilter(json: any, jsonPaths: string[]): Record;