/** * Returns the count of distinct elements selected from an array. */ declare function countDistinct(iter: Iterable, selector: (item: T1) => any): number; declare namespace countDistinct {} export = countDistinct;