import * as pulumi from "@pulumi/pulumi"; /** * Reads the contents of a file into a string and returns the SHA256 hash of it. */ export declare function filesha256(args: Filesha256Args, opts?: pulumi.InvokeOptions): Promise; export interface Filesha256Args { input: string; } export interface Filesha256Result { readonly result: string; } /** * Reads the contents of a file into a string and returns the SHA256 hash of it. */ export declare function filesha256Output(args: Filesha256OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Filesha256OutputArgs { input: pulumi.Input; }