import { IterableX } from './iterablex'; export declare class IgnoreElementsIterable extends IterableX { private _source; constructor(source: Iterable); [Symbol.iterator](): Iterator; } export declare function ignoreElements(source: Iterable): IterableX;