/** * Merkle tree branch link. */ export declare class MerkleTreeBranchLink { /** * Link bit index */ readonly bit: string; /** * Link hash */ readonly link: string; /** * @param bit * @param link */ constructor( /** * Link bit index */ bit: string, /** * Link hash */ link: string); }