import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; export type CleanUpResponseEscrowLegsInstructionArgs = { legAmountToClear: number; }; export declare const cleanUpResponseEscrowLegsStruct: beet.BeetArgsStruct; export type CleanUpResponseEscrowLegsInstructionAccounts = { protocol: web3.PublicKey; rfq: web3.PublicKey; response: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const cleanUpResponseEscrowLegsInstructionDiscriminator: number[]; export declare function createCleanUpResponseEscrowLegsInstruction(accounts: CleanUpResponseEscrowLegsInstructionAccounts, args: CleanUpResponseEscrowLegsInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;