/** * SHA-256 hash an input string into an ArrayBuffer. */ declare function sha256(input: string): Promise; export { sha256 };