/**
 * Array map
 */
declare function map(arr: any, callback: any, thisObj?: any): any[];
export default map;
