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