import * as pulumi from "@pulumi/pulumi"; /** * Interprets a given string as JSON and returns a represetation * of the result of decoding that string. * If input is not valid JSON, the result will be the input unchanged. */ export declare function jsondecode(args: JsondecodeArgs, opts?: pulumi.InvokeOptions): Promise; export interface JsondecodeArgs { input: string; } export interface JsondecodeResult { readonly result: any; } /** * Interprets a given string as JSON and returns a represetation * of the result of decoding that string. * If input is not valid JSON, the result will be the input unchanged. */ export declare function jsondecodeOutput(args: JsondecodeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface JsondecodeOutputArgs { input: pulumi.Input; }