export type HashingAlgorithm = 'sha256' | 'djb2' | 'none'; export declare function djb2Hash(value: string): string; export declare function djb2HashForObject(object: Record | null): string; export declare function sha256HashBase64(name: string): string; export declare function bigqueryHash(str: string): bigint; export declare function sha256Hash(name: string): DataView; export declare function hashString(str: string, algorithm?: HashingAlgorithm): string; export declare function hashUnitIDForIDList(unitID: string, algorithm?: HashingAlgorithm): string;