export declare function getGitHashForFiles(potentialFilesToHash: string[], path: string): Promise<{
    hashes: Map<string, string>;
    deleted: string[];
}>;
export declare function getGitHashForBatch(filesToHash: string[], path: any): Promise<Map<string, string>>;
export declare function getFileHashes(path: string): Promise<{
    allFiles: Map<string, string>;
}>;
