import { Spread } from "./_internal";
/**
 * Fill non-existent properties in the first object with the other objects
 * @param args Objects to fill
 * @returns The first object filled with the new properties
 */
export declare function deepFillIn<A extends object[]>(...args: [...A]): Spread<A>;
