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