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