import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function intersectProto(this: IterableX, second: IterableX, comparer?: (x: T, y: T) => boolean): IterableX; declare module '../../iterable/iterablex' { interface IterableX { intersect: typeof intersectProto; } }