import * as web3 from '@solana/web3.js'; import * as beet from '@convergence-rfq/beet'; export type SetInstrumentEnabledStatusInstructionArgs = { instrumentKey: web3.PublicKey; enabledStatusToSet: boolean; }; export declare const setInstrumentEnabledStatusStruct: beet.BeetArgsStruct; export type SetInstrumentEnabledStatusInstructionAccounts = { authority: web3.PublicKey; protocol: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const setInstrumentEnabledStatusInstructionDiscriminator: number[]; export declare function createSetInstrumentEnabledStatusInstruction(accounts: SetInstrumentEnabledStatusInstructionAccounts, args: SetInstrumentEnabledStatusInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;