/** * The model for a claim proof. Currently we support only an address * in the leaf of the merkle tree. */ export declare class ClaimProof { /** * The address of the account that owns the claim. */ address: string; /** * The proof of the claim (an array of hashes, depending on tree depth) */ proof: string[]; }