import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; import { ApiLeg } from '../types/ApiLeg'; export type AddLegsToRfqInstructionArgs = { legs: ApiLeg[]; }; export declare const addLegsToRfqStruct: beet.FixableBeetArgsStruct; export type AddLegsToRfqInstructionAccounts = { taker: web3.PublicKey; protocol: web3.PublicKey; rfq: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const addLegsToRfqInstructionDiscriminator: number[]; export declare function createAddLegsToRfqInstruction(accounts: AddLegsToRfqInstructionAccounts, args: AddLegsToRfqInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;