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