import { AsyncIterableX } from './asynciterablex.js'; /** @ignore */ export declare class OfAsyncIterable extends AsyncIterableX { private _args; constructor(args: TSource[]); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Creates an async-iterable from the specified elements. * * @template TSource The type of the elements to create an async-iterable sequence. * @param {...TSource[]} args The elements to turn into an async-iterable sequence. * @returns {AsyncIterableX} The async-iterable sequence created from the elements. */ export declare function of(...args: TSource): AsyncIterableX;