import { IterableX } from '../../iterable/iterablex.js'; import { MathOptions } from '../../iterable/mathoptions.js'; export declare function sumProto(this: IterableX, options?: MathOptions): number; export declare function sumProto(this: IterableX, options?: MathOptions): number; declare module '../../iterable/iterablex' { interface IterableX { sum: typeof sumProto; } }