/** * Like getPath, but if the node is found, its value is set to @value * @param obj The object (or Array) to walk through * @param path The path (eg. "a.b.4.c") * @param value The value to set * @param createEmpty If true, create missing intermediate objects or arrays * @returns The modified object */ export declare function setPath(obj: Record, path: string, value: any, createEmpty?: boolean): Record;