import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; import { QuoteSide } from '../types/QuoteSide'; export type ConfirmResponseInstructionArgs = { side: QuoteSide; overrideLegMultiplierBps: beet.COption; }; export declare const confirmResponseStruct: beet.FixableBeetArgsStruct; export type ConfirmResponseInstructionAccounts = { taker: web3.PublicKey; protocol: web3.PublicKey; rfq: web3.PublicKey; response: web3.PublicKey; collateralInfo: web3.PublicKey; makerCollateralInfo: web3.PublicKey; collateralToken: web3.PublicKey; riskEngine: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const confirmResponseInstructionDiscriminator: number[]; export declare function createConfirmResponseInstruction(accounts: ConfirmResponseInstructionAccounts, args: ConfirmResponseInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;