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