import type { IParallelEnumerable } from "../../types"; /** * Computes the sum of the sequence of numeric values that are obtained by invoking a transform function * on each element of the input sequence. * @param source A sequence of values that are used to calculate a sum. * @param selector A transform function to apply to each element. * @returns Sum of the sequence */ export declare const sumAsync: (source: IParallelEnumerable, selector: (x: TSource) => Promise) => Promise;