import { DataHash } from '../hash/DataHash.js'; import { HashAlgorithm } from '../hash/HashAlgorithm.js'; export declare class LeafBranch { readonly path: bigint; private readonly _value; readonly hash: DataHash; constructor(path: bigint, _value: Uint8Array, hash: DataHash); get value(): Uint8Array; static create(algorithm: HashAlgorithm, path: bigint, value: Uint8Array): Promise; toString(): string; }