/**
 * @module Collection
 */
import { type ICollection } from "../../../../collection/contracts/_module-exports.js";
/**
 * @internal
 */
export declare class ReverseIterable<TInput> implements Iterable<TInput> {
    private collection;
    private chunkSize;
    private makeCollection;
    constructor(collection: ICollection<TInput>, chunkSize: number, makeCollection: <TInput>(iterable: Iterable<TInput>) => ICollection<TInput>);
    [Symbol.iterator](): Iterator<TInput>;
}
