import { ValueIteratee } from '../interfaces'; /** * This method is like `_.uniq` except that it accepts `iteratee` which is invoked for each element in `array` to generate the criterion by which uniqueness is computed. The order of result values is determined by the order they occur in the array. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 9,004 bytes * - Micro-dash: 89 bytes */ export declare function uniqBy(array: T[], iteratee: ValueIteratee): T[];