import * as pulumi from "@pulumi/pulumi"; /** * Returns a JSON-encoded representation of the given value, * which can contain arbitrarily-nested lists and maps. * Note that if the value is a string then its value will be placed in quotes. */ export declare function jsonencode(args: JsonencodeArgs, opts?: pulumi.InvokeOptions): Promise; export interface JsonencodeArgs { input: any; } export interface JsonencodeResult { readonly result: string; } /** * Returns a JSON-encoded representation of the given value, * which can contain arbitrarily-nested lists and maps. * Note that if the value is a string then its value will be placed in quotes. */ export declare function jsonencodeOutput(args: JsonencodeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface JsonencodeOutputArgs { input: any; }