import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class EndWithIterable extends IterableX { private _source; private _args; constructor(source: Iterable, args: TSource[]); [Symbol.iterator](): Generator; } /** * Append values to an 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 iterable sequence. * @returns {MonoTypeOperatorFunction} An operator which appends values to the end of the sequence. */ export declare function endWith(...args: TSource[]): MonoTypeOperatorFunction;