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