/**
 * Maps the items in the array and concatenates the result arrays.
 */
declare function collect(arr: any, callback: any, thisObj?: any): any[];
export default collect;
