/**
 * 从最后开始的索引值,返回对象第一个索引值
 *
 * @param {object} obj 对象/数组
 * @param {Function} iterate(item, index, obj) 回调
 * @param {object} context 上下文
 * @return {object}
 */
declare const findLastIndexOf: (obj: any, iterate: any, context?: any) => any;
export default findLastIndexOf;
