import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class IgnoreElementsAsyncIterable extends AsyncIterableX { private _source; constructor(source: AsyncIterable); [Symbol.asyncIterator](signal?: AbortSignal): AsyncIterator; } /** * Ignores all elements in an async-iterable sequence leaving only the termination messages. * * @template TSource The type of the elements in the source sequence * @returns {MonoTypeOperatorAsyncFunction} An operator that returns an empty async-iterable sequence * that signals termination, successful or exceptional, of the source sequence. */ export declare function ignoreElements(): MonoTypeOperatorAsyncFunction;