/// import { BinaryLike, BinaryToTextEncoding } from "crypto"; export interface HashOptions { algorithm?: string; digest?: BinaryToTextEncoding; } export declare function hash(data: (string | BinaryLike)[], { algorithm, digest }?: HashOptions): string; //# sourceMappingURL=hash.d.ts.map