export default baseUnset;
/**
 * The base implementation of `unset`.
 *
 * @private
 * @ignore
 * @param {Object} object The object to modify.
 * @param {Array|string} path The property path to unset.
 * @returns {boolean} Returns `true` if the property is deleted, else `false`.
 */
declare function baseUnset(object: any, path: any[] | string): boolean;
