import type { HashDependenciesOptions } from "../types/hash-dependencies-options"; /** * Hashes the dependencies in the current working directory as a string. * @param options Optional options to change the behaviour of the dependency hashing functionality. * @returns A hash as a string representing the dependencies */ export declare const hashDependencies: ({ rootDirectory, algorithm, excludePlatforms, excludeExpoConfig, factorAllDependencyChanges, additionalPatterns, }?: HashDependenciesOptions) => { hash: string; fileCount: number; }; //# sourceMappingURL=hash-dependencies.d.ts.map