/**
 * 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 declare function mixIn<T>(target: T, ...args: Array<T>): T;
