/**
 * Deeply copy missing properties in the target from the defaults.
 */
declare function deepFillIn(target: any, defaults: any): any;
export default deepFillIn;
