import { JSONSchema, ValidateFunction } from '../../validation'; /** * Merkle Proof * @alpha */ export type MerkleProof = { proof: string[]; index: number; hashingKeys: string[]; entityHash: string; }; /** * Merkle Proof * @alpha */ export declare namespace MerkleProof { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=merkle-proof.d.ts.map