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