/**
* Merge multiple objects into the target
* @param target The object to merge into
* @param args The objects to be merged
* @returns Return the target object with other arguments merged into it
*/
export declarefunctionmixIn<T>(target: T, ...args: Array<T>): T;