import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; export declare type WithdrawFromFeeInstructionArgs = { amount: beet.bignum; }; export declare type WithdrawFromFeeInstructionAccounts = { authority: web3.PublicKey; feeWithdrawalDestination: web3.PublicKey; auctionHouseFeeAccount: web3.PublicKey; auctionHouse: web3.PublicKey; }; export declare function createWithdrawFromFeeInstruction(accounts: WithdrawFromFeeInstructionAccounts, args: WithdrawFromFeeInstructionArgs): web3.TransactionInstruction;