/** * Merges two objects into one. * * @param obj1 * @param obj2 */ export declare function mergeObjects(obj1: T1, obj2: T2): T1 & T2;