/** File with a hash label */
export declare class Cask {
    hash: string;
    file: Blob;
    static hash(file: Blob): Promise<string>;
    static make(file: Blob): Promise<Cask>;
    constructor(hash: string, file: Blob);
}
