/**
 * Merges the properties of two objects together, mutating the first object. Similar to lodash's merge.
 */
export declare function merge<T>(x: T, y: T): T;
