export interface RepoFile { path: string; hash: string; } export interface RepoSnapshot { name: string; rootHash: string; files: RepoFile[]; } export declare function snapshotRepo(repoDir: string, name: string): Promise; //# sourceMappingURL=merkle.d.ts.map