/**
 * Assigns `value` to `key` of `object` if the existing value is not equivalent.
 *
 * @private
 * @param object The object to modify.
 * @param key The key of the property to assign.
 * @param value The value to assign.
 */
declare function assignValue(object: any, key: string, value: any): any;
export default assignValue;
