import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; export declare type ClaimInstructionArgs = { bump: number; index: beet.bignum; amount: beet.bignum; claimantSecret: web3.PublicKey; proof: number[][]; }; export declare type ClaimInstructionAccounts = { distributor: web3.PublicKey; claimStatus: web3.PublicKey; from: web3.PublicKey; to: web3.PublicKey; temporal: web3.PublicKey; payer: web3.PublicKey; }; export declare function createClaimInstruction(accounts: ClaimInstructionAccounts, args: ClaimInstructionArgs): web3.TransactionInstruction;