/** * Compact non-cryptographic string hash via djb2. * Used for memory content-hash dedup; NOT for security or cryptographic * integrity. The 8-char hex output is short enough for log lines and * deterministic-id derivation. */ export declare function djb2Hash(input: string): string; //# sourceMappingURL=hash.d.ts.map