import * as pulumi from "@pulumi/pulumi"; /** * Reads the contents of a file into a string and returns the SHA512 hash of it. */ export declare function filesha512(args: Filesha512Args, opts?: pulumi.InvokeOptions): Promise; export interface Filesha512Args { input: string; } export interface Filesha512Result { readonly result: string; } /** * Reads the contents of a file into a string and returns the SHA512 hash of it. */ export declare function filesha512Output(args: Filesha512OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Filesha512OutputArgs { input: pulumi.Input; }