import * as pulumi from "@pulumi/pulumi"; /** * Reads the contents of a file into a string and returns the SHA1 hash of it. */ export declare function filesha1(args: Filesha1Args, opts?: pulumi.InvokeOptions): Promise; export interface Filesha1Args { input: string; } export interface Filesha1Result { readonly result: string; } /** * Reads the contents of a file into a string and returns the SHA1 hash of it. */ export declare function filesha1Output(args: Filesha1OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Filesha1OutputArgs { input: pulumi.Input; }