/** True for plain objects (including `Object.create(null)`), false for arrays, `Date`, etc. */ export declare function isPlainObject(value: unknown): value is Record; /** * Assigns own enumerable properties of `source` onto `target` only where `target[key] === undefined` * (lodash `defaults` semantics). */ export declare function assignDefaults>(target: T, source: Record): void; //# sourceMappingURL=object.d.ts.map