import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function distinctProto(this: IterableX, keySelector?: (value: TSource) => TKey, comparer?: (x: TKey, y: TKey) => boolean): IterableX; declare module '../../iterable/iterablex' { interface IterableX { distinct: typeof distinctProto; } }