import { Branch } from './Branch.js'; import { DataHash } from '../hash/DataHash.js'; import { HashAlgorithm } from '../hash/HashAlgorithm.js'; export declare class NodeBranch { readonly path: bigint; readonly left: Branch; readonly right: Branch; readonly hash: DataHash; constructor(path: bigint, left: Branch, right: Branch, hash: DataHash); static create(algorithm: HashAlgorithm, path: bigint, left: Branch, right: Branch): Promise; toString(): string; }