/**
 * Mixes objects into the target object, recursively mixing existing child
 * objects.
 */
declare function deepMixIn(target: any, objects: any): any;
export default deepMixIn;
