import * as pulumi from "@pulumi/pulumi"; /** * Returns a hexadecimal representation of the SHA-256 hash of the given string. */ export declare function sha256(args: Sha256Args, opts?: pulumi.InvokeOptions): Promise; export interface Sha256Args { input: string; } export interface Sha256Result { readonly result: string; } /** * Returns a hexadecimal representation of the SHA-256 hash of the given string. */ export declare function sha256Output(args: Sha256OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Sha256OutputArgs { input: pulumi.Input; }