import * as pulumi from "@pulumi/pulumi"; /** * Returns a base64-encoded representation of raw SHA-256 sum of the given string. * This is not equivalent of base64encode(sha256(string)) since sha256() returns hexadecimal representation. */ export declare function base64sha256(args: Base64sha256Args, opts?: pulumi.InvokeOptions): Promise; export interface Base64sha256Args { input: string; } export interface Base64sha256Result { readonly result: string; } /** * Returns a base64-encoded representation of raw SHA-256 sum of the given string. * This is not equivalent of base64encode(sha256(string)) since sha256() returns hexadecimal representation. */ export declare function base64sha256Output(args: Base64sha256OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Base64sha256OutputArgs { input: pulumi.Input; }