import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class StartWithIterable extends IterableX { private _source; private _args; constructor(source: Iterable, args: TSource[]); [Symbol.iterator](): Generator; } /** * Prepend a value to an iterable sequence. * * @template TSource The type of the elements in the source sequence. * @param {...TSource[]} args Elements to prepend to the specified sequence. * @returns {MonoTypeOperatorFunction} The source sequence prepended with the specified values. */ export declare function startWith(...args: TSource[]): MonoTypeOperatorFunction;