import * as pulumi from "@pulumi/pulumi"; /** * Returns a hexadecimal representation of the SHA-512 hash of the given string. */ export declare function sha512(args: Sha512Args, opts?: pulumi.InvokeOptions): Promise; export interface Sha512Args { input: string; } export interface Sha512Result { readonly result: string; } /** * Returns a hexadecimal representation of the SHA-512 hash of the given string. */ export declare function sha512Output(args: Sha512OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Sha512OutputArgs { input: pulumi.Input; }