/**
 * The base implementation of `assignIn` without support for multiple sources
 * or `customizer` functions.
 *
 * @private
 * @ignore
 * @param object The destination object.
 * @param source The source object.
 * @returns Returns `object`.
 */
declare function baseAssignIn(object: any, source: any): any;
export default baseAssignIn;
