import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; export declare type UpdateAuctionHouseInstructionArgs = { sellerFeeBasisPoints: beet.COption; requiresSignOff: beet.COption; canChangeSalePrice: beet.COption; }; export declare type UpdateAuctionHouseInstructionAccounts = { treasuryMint: web3.PublicKey; payer: web3.PublicKey; authority: web3.PublicKey; newAuthority: web3.PublicKey; feeWithdrawalDestination: web3.PublicKey; treasuryWithdrawalDestination: web3.PublicKey; treasuryWithdrawalDestinationOwner: web3.PublicKey; auctionHouse: web3.PublicKey; }; export declare function createUpdateAuctionHouseInstruction(accounts: UpdateAuctionHouseInstructionAccounts, args: UpdateAuctionHouseInstructionArgs): web3.TransactionInstruction;