import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { ReduceOptions } from '../../asynciterable/reduceoptions.js'; /** * @ignore */ export declare function reduceRightProto(this: AsyncIterableX, options: ReduceOptions): Promise; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { reduceRight: typeof reduceRightProto; } }