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