import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; import { AuthoritySide } from '../types/AuthoritySide'; export type PrepareMoreEscrowLegsSettlementInstructionArgs = { side: AuthoritySide; legAmountToPrepare: number; }; export declare const prepareMoreEscrowLegsSettlementStruct: beet.BeetArgsStruct; export type PrepareMoreEscrowLegsSettlementInstructionAccounts = { caller: web3.PublicKey; protocol: web3.PublicKey; rfq: web3.PublicKey; response: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const prepareMoreEscrowLegsSettlementInstructionDiscriminator: number[]; export declare function createPrepareMoreEscrowLegsSettlementInstruction(accounts: PrepareMoreEscrowLegsSettlementInstructionAccounts, args: PrepareMoreEscrowLegsSettlementInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;