import * as pulumi from "@pulumi/pulumi"; /** * Formats a list of strings according to the given format. Argument values which are lists are "zipped" together to produce a list of results. */ export declare function formatlist(args: FormatlistArgs, opts?: pulumi.InvokeOptions): Promise; export interface FormatlistArgs { args: any[]; input: string; } export interface FormatlistResult { readonly result: string[]; } /** * Formats a list of strings according to the given format. Argument values which are lists are "zipped" together to produce a list of results. */ export declare function formatlistOutput(args: FormatlistOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface FormatlistOutputArgs { args: pulumi.Input; input: pulumi.Input; }