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