import { IterableX } from './iterablex'; export declare class EndWithIterable extends IterableX { private _source; private _args; constructor(source: Iterable, args: TSource[]); [Symbol.iterator](): IterableIterator; } export declare function endWith(source: Iterable, ...args: TSource[]): IterableX;