import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class EndWithAsyncIterable extends AsyncIterableX { private _source; private _args; constructor(source: AsyncIterable, args: TSource[]); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Append values to an async-iterable sequence. * * @template TSource The type of the elements in the source sequence. * @param {...TSource[]} args The values to append to the end of the async-iterable sequence. * @returns {MonoTypeOperatorAsyncFunction} An operator which appends values to the end of the sequence. */ export declare function endWith(...args: TSource[]): MonoTypeOperatorAsyncFunction;