import * as pulumi from "@pulumi/pulumi"; /** * Returns a (conventional) hexadecimal representation of the MD5 hash of the given string. */ export declare function md5(args: Md5Args, opts?: pulumi.InvokeOptions): Promise; export interface Md5Args { input: string; } export interface Md5Result { readonly result: string; } /** * Returns a (conventional) hexadecimal representation of the MD5 hash of the given string. */ export declare function md5Output(args: Md5OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Md5OutputArgs { input: pulumi.Input; }