import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; export declare const unlockResponseCollateralStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; export type UnlockResponseCollateralInstructionAccounts = { protocol: web3.PublicKey; rfq: web3.PublicKey; response: web3.PublicKey; takerCollateralInfo: web3.PublicKey; makerCollateralInfo: web3.PublicKey; takerCollateralTokens: web3.PublicKey; makerCollateralTokens: web3.PublicKey; protocolCollateralTokens: web3.PublicKey; tokenProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const unlockResponseCollateralInstructionDiscriminator: number[]; export declare function createUnlockResponseCollateralInstruction(accounts: UnlockResponseCollateralInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;