import * as pulumi from "@pulumi/pulumi"; /** * Reads the contents of a file into a string and returns the base64-encoded SHA512 hash of it. */ export declare function filebase64sha512(args: Filebase64sha512Args, opts?: pulumi.InvokeOptions): Promise; export interface Filebase64sha512Args { input: string; } export interface Filebase64sha512Result { readonly result: string; } /** * Reads the contents of a file into a string and returns the base64-encoded SHA512 hash of it. */ export declare function filebase64sha512Output(args: Filebase64sha512OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Filebase64sha512OutputArgs { input: pulumi.Input; }