/**
 * Returns the index of the last item that matches criteria
 */
declare function findLastIndex(arr: any, iterator: any, thisObj?: any): any;
export default findLastIndex;
