import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class ReverseIterable extends IterableX { private _source; constructor(source: Iterable); [Symbol.iterator](): Generator; } /** * Reverses the iterable instance. * * @template TSource The type of the elements in the source sequence. * @returns {MonoTypeOperatorAsyncFunction} The iterable in reversed sequence. */ export declare function reverse(): MonoTypeOperatorFunction;