import type { IAsyncParallel } from "../../types"; type SumFunc = { (source: IAsyncParallel): Promise; (source: IAsyncParallel, selector: (x: TSource) => number): Promise; }; export declare const sum: SumFunc; export {};