import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class IgnoreElementsIterable extends IterableX { private _source; constructor(source: Iterable); [Symbol.iterator](): Iterator; } /** * Ignores all elements in an iterable sequence leaving only the termination messages. * * @template TSource The type of the elements in the source sequence * @returns {MonoTypeOperatorFunction} An operator that returns an empty iterable sequence * that signals termination, successful or exceptional, of the source sequence. */ export declare function ignoreElements(): MonoTypeOperatorFunction;