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