import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class ReverseAsyncIterable extends AsyncIterableX { private _source; constructor(source: AsyncIterable); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, undefined>; } /** * Reverses the async-iterable instance. * * @template TSource The type of the elements in the source sequence. * @returns {MonoTypeOperatorAsyncFunction} The async-iterable in reversed sequence. */ export declare function reverse(): MonoTypeOperatorAsyncFunction;