interface IObjectMergeOptions { arrayClone?: boolean; arrayPushAll?: boolean; objectClone?: boolean; } export declare const objectMerge: (objectA: T, objectB: Partial, options?: IObjectMergeOptions) => T;