/**
 * Sums the values of the async iterable
 */
export declare function sum(source: AsyncIterable<number>): Promise<number>;
