/** * Generate proof data for specific leaf indices using a top-down, depth-first approach * * @param leaves - All leaf nodes * @param indices - Indices of leaves to generate proof for * @returns Proof data */ export declare function generateProof(leaves: Uint8Array[], indices: number[]): { leaves: Uint8Array[]; leafIndices: number[]; proofs: Uint8Array[]; };