///
export interface DeploymentFile {
names: string[];
data: Buffer;
mode: number;
}
/**
* Transforms map to object
* @param map with hashed files
* @return {object}
*/
export declare const mapToObject: (map: Map) => {
[key: string]: DeploymentFile;
};
/**
* Computes hashes for the contents of each file given.
*
* @param {Array} of {String} full paths
* @return {Map}
*/
declare function hashes(files: string[]): Promise