import { AsyncIterableX } from '../asynciterablex.js'; /** @ignore */ export declare class StartWithAsyncIterable extends AsyncIterableX { private _source; private _args; constructor(source: AsyncIterable, args: TSource[]); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Prepend a value to an async-iterable sequence. * * @template TSource The type of the elements in the source sequence. * @param {...TSource[]} args Elements to prepend to the specified sequence. * @returns The source sequence prepended with the specified values. */ export declare function startWith(...args: TSource): (source: AsyncIterable) => AsyncIterableX;