/** * Filter array with limit * * @type {Array} */ declare function filterLimit(src: T[], fn: (T) => boolean, limit?: number): T[]; /** * From distinct array * * @type {Array} */ declare function fromDistinct(src: T1[], fn: (T1) => T2, distinctKey?: (string)): T2[]; export { filterLimit, fromDistinct };