import * as pulumi from "@pulumi/pulumi"; /** * Reads the contents of a file into a string and returns the base64-encoded SHA256 hash of it. */ export declare function filebase64sha256(args: Filebase64sha256Args, opts?: pulumi.InvokeOptions): Promise; export interface Filebase64sha256Args { input: string; } export interface Filebase64sha256Result { readonly result: string; } /** * Reads the contents of a file into a string and returns the base64-encoded SHA256 hash of it. */ export declare function filebase64sha256Output(args: Filebase64sha256OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Filebase64sha256OutputArgs { input: pulumi.Input; }