import { IterableX } from '../../iterable/iterablex.js'; import { ReduceOptions } from '../../iterable/reduceoptions.js'; /** * @ignore */ export declare function reduceRightProto(this: IterableX, options: ReduceOptions): R; export declare function reduceRightProto(this: IterableX, accumulator: (accumulator: R, current: T, index: number) => R, seed?: R): R; declare module '../../iterable/iterablex' { interface IterableX { reduceRight: typeof reduceRightProto; } }