/** * Generates a short, deterministic hash for a directory path. * * @param {string} dirRelativePath - The relative path to the directory. * @returns {string} An 8-character hexadecimal hash representing the normalized path. * * @example * shaDirPathShort('src/utils'); // "a3c9b712" * */ export declare function shaDirPathShort(dirRelativePath: string): string; //# sourceMappingURL=sha-dir-path-short.d.ts.map