import * as pulumi from "@pulumi/pulumi"; /** * Returns a hexadecimal representation of the SHA-1 hash of the given string. */ export declare function sha1(args: Sha1Args, opts?: pulumi.InvokeOptions): Promise; export interface Sha1Args { input: string; } export interface Sha1Result { readonly result: string; } /** * Returns a hexadecimal representation of the SHA-1 hash of the given string. */ export declare function sha1Output(args: Sha1OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Sha1OutputArgs { input: pulumi.Input; }