declare type IAnyObject = Record; /** Deep merge objects to the first one */ export declare const deepAssign: (originObject: T, ...assignObjects: U[]) => V; /** Deep merge objects to the last one */ export declare const deepAssignReverse: (...assignObjects: IAnyObject[]) => IAnyObject; export {};