import type { Hash } from 'node:crypto'; export declare function hashFileOrDirectory(path: string, hash: Hash): void; export declare function hashDirectory(directory: string): string; export declare function hashPath(path: string): string; export declare function hashPaths(paths: string | string[]): string;