export default baseForOwnRight;
/**
 * The base implementation of `forOwnRight`.
 *
 * @private
 * @param {Object} object The object to iterate over.
 * @param {Function} iteratee The function invoked per iteration.
 * @returns {Object} Returns `object`.
 */
declare function baseForOwnRight(object: any, iteratee: Function): any;
