import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; export declare type WithdrawInstructionArgs = { escrowPaymentBump: number; auctioneerAuthorityBump: number; amount: beet.bignum; }; export declare type WithdrawInstructionAccounts = { auctionHouseProgram: web3.PublicKey; wallet: web3.PublicKey; receiptAccount: web3.PublicKey; escrowPaymentAccount: web3.PublicKey; treasuryMint: web3.PublicKey; authority: web3.PublicKey; auctionHouse: web3.PublicKey; auctionHouseFeeAccount: web3.PublicKey; auctioneerAuthority: web3.PublicKey; ahAuctioneerPda: web3.PublicKey; }; export declare function createWithdrawInstruction(accounts: WithdrawInstructionAccounts, args: WithdrawInstructionArgs): web3.TransactionInstruction;