import * as pulumi from "@pulumi/pulumi"; /** * Returns the smallest of the floats. */ export declare function min(args: MinArgs, opts?: pulumi.InvokeOptions): Promise; export interface MinArgs { input: number[]; } export interface MinResult { readonly result: number; } /** * Returns the smallest of the floats. */ export declare function minOutput(args: MinOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface MinOutputArgs { input: pulumi.Input[]>; }