/**
 * 指定方法后的返回值组成的新数组
 *
 * @param {object} obj 对象/数组
 * @param {Function} iterate(item, index, obj) 回调
 * @param {object} context 上下文
 * @return {Array}
 */
declare function map(obj: any, iterate: any, context?: any): any;
export default map;
