import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; import { AuthoritySide } from '../types/AuthoritySide'; export type PartlyRevertEscrowSettlementPreparationInstructionArgs = { side: AuthoritySide; legAmountToRevert: number; }; export declare const partlyRevertEscrowSettlementPreparationStruct: beet.BeetArgsStruct; export type PartlyRevertEscrowSettlementPreparationInstructionAccounts = { protocol: web3.PublicKey; rfq: web3.PublicKey; response: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const partlyRevertEscrowSettlementPreparationInstructionDiscriminator: number[]; export declare function createPartlyRevertEscrowSettlementPreparationInstruction(accounts: PartlyRevertEscrowSettlementPreparationInstructionAccounts, args: PartlyRevertEscrowSettlementPreparationInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;