/**
 * A list of hashes and the algorithm used to create them
 */
export type HashList = {
    hashes: Array<string>;
    algorithm: HashList.algorithm;
};
export declare namespace HashList {
    enum algorithm {
        SHA1 = "sha1",
        SHA512 = "sha512"
    }
}
