import type { Algorithm } from "../types/algorithm"; interface HashFileContentsOptions { algorithm?: Algorithm; rootDirectory?: string; } /** * Hashes an array of file paths contents as a hash. * @param paths An array of paths relative to the current working directory. * @param rootDirectory Root directory to append to the beginning of paths provided. * @returns A hex-representation of the hash. */ export declare const hashFileContents: (paths: string[], { algorithm, rootDirectory }: HashFileContentsOptions) => string; export {}; //# sourceMappingURL=hash-files.d.ts.map