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