/** * This function is similar to Object.assign() but it assigns recursively and * allows you to ignore nullish values from the source * * @param {Object} target * @param {Object} source * @returns the target object */ export declare function recursivelyAssign(target: Object, source: Object, ignoreNullish?: boolean): any;