/** * Calculates a deterministic SHA-256 checksum for the contents of a directory. * It hashes each file's content and combines them based on sorted relative paths. * @param dir The absolute file system path to the directory. * @returns A promise resolving to the checksum string. */ export declare function CalculateChecksum(dir: string): Promise;