import * as pulumi from "@pulumi/pulumi"; /** * Takes a map of lists of strings and swaps the keys and values to return a new map of lists of strings. */ export declare function transpose(args: TransposeArgs, opts?: pulumi.InvokeOptions): Promise; export interface TransposeArgs { input: { [key: string]: string[]; }; } export interface TransposeResult { readonly result: { [key: string]: string[]; }; } /** * Takes a map of lists of strings and swaps the keys and values to return a new map of lists of strings. */ export declare function transposeOutput(args: TransposeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TransposeOutputArgs { input: pulumi.Input<{ [key: string]: pulumi.Input[]>; }>; }