import HashFunction from './HashFunction'; import SHA1 from './SHA1'; import CRC32 from './CRC32'; import * as uuids from './uuids'; export { SHA1, CRC32, uuids }; export { utf8Encode, utf8Decode, base32Encode, base32Decode, hexEncode, hexDecode } from './utils'; export declare function hash(data: any, hashFunc: HashFunction): Uint8Array; /** @deprecated; just use hash(str, hashFunc) */ export declare function hashString(str: string, hashFunc: HashFunction): Uint8Array; export declare function sha1Urn(thing: any): string;