import { UpdaterArg } from "../types/updater.js";
/**
 * Updates an object with new values.
 * @param obj - The object to update.
 * @param fields - An object containing new values to update in the target object.
 */
export default function updateObjectAdvanced(obj: Object, fields: UpdaterArg | UpdaterArg[]): Object;
