/** Stable short hash for cache keys and content fingerprints. */ export declare function hash(input: string): string; /** Hash of file content + mtime, used by the incremental cache. */ export declare function fileFingerprint(content: string, mtimeMs: number): string;