import { ArrayIteratee, Nil, ObjectIteratee } from '../interfaces'; /** * Creates a flattened array of values by running each element in `collection` thru `iteratee` and flattening the mapped results. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 14,344 bytes * - Micro-dash: 325 bytes */ export declare function flatMap(array: I[] | Nil, iteratee: ArrayIteratee): O[]; export declare function flatMap(object: T | Nil, iteratee: ObjectIteratee): O[];