import { Hash } from "../parts/basics.js";
export declare class Checksum {
    hash: Hash;
    nickname: string;
    constructor(hash: Hash, nickname: string);
    static make(file: Blob): Promise<Checksum>;
}
