import * as pulumi from "@pulumi/pulumi"; /** * Returns the first non-nil or non-empty value from the given arguments. All arguments must be of the same type, or convertible to a common type. */ export declare function coalesce(args: CoalesceArgs, opts?: pulumi.InvokeOptions): Promise; export interface CoalesceArgs { input: any[]; } export interface CoalesceResult { readonly result: any; } /** * Returns the first non-nil or non-empty value from the given arguments. All arguments must be of the same type, or convertible to a common type. */ export declare function coalesceOutput(args: CoalesceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface CoalesceOutputArgs { input: pulumi.Input; }