import * as pulumi from "@pulumi/pulumi"; /** * Returns the total sum of the elements of the input list. */ export declare function sum(args: SumArgs, opts?: pulumi.InvokeOptions): Promise; export interface SumArgs { input: number[]; } export interface SumResult { readonly result: number; } /** * Returns the total sum of the elements of the input list. */ export declare function sumOutput(args: SumOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface SumOutputArgs { input: pulumi.Input[]>; }