/** * Simple hash function that generates a deterministic hash for a given input string. * Uses the djb2 algorithm for simplicity and good distribution. */ export declare function hash(input: string): string; //# sourceMappingURL=hash.d.ts.map