/**
 * A map of hashes of the file. The key is the hashing algorithm and the value is the string version of the hash.
 */
export type VersionFileHashes = {
    sha512?: string;
    sha1?: string;
};
