import { JsonValue } from "../types/types"; /** * updates nested data by path * * @param {JsonValue} oldData Data to be updated * @param {Array} updatePath Path to the data to be updated * @param {JsonValue} value New value */ export declare const updateNestedDataByPath: (oldData: JsonValue, updatePath: string[], value: JsonValue) => JsonValue; //# sourceMappingURL=updateNestedDataByPath.d.ts.map