export declare const HASH: { readonly SHA_256: "SHA-256"; readonly SHA_384: "SHA-384"; }; export type HASH = (typeof HASH)[keyof typeof HASH]; export interface Hash { digest: (input: Uint8Array) => Promise; }