import * as web3 from '@solana/web3.js'; import { AuthorityScope } from '../types/AuthorityScope'; export declare type UpdateAuctioneerInstructionArgs = { scopes: AuthorityScope[]; }; export declare type UpdateAuctioneerInstructionAccounts = { auctionHouse: web3.PublicKey; authority: web3.PublicKey; auctioneerAuthority: web3.PublicKey; ahAuctioneerPda: web3.PublicKey; }; export declare function createUpdateAuctioneerInstruction(accounts: UpdateAuctioneerInstructionAccounts, args: UpdateAuctioneerInstructionArgs): web3.TransactionInstruction;