import { ArrayIteratee, ObjectIteratee } from '../interfaces'; /** * Creates an array of values by running each element in `collection` thru `iteratee`. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 14,041 bytes * - Micro-dash: 274 bytes */ export declare function map(array: I[] | undefined, iteratee: ArrayIteratee): O[]; export declare function map(object: T | undefined, iteratee: ObjectIteratee): O[];