import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; export type WithdrawCollateralInstructionArgs = { amount: beet.bignum; }; export declare const withdrawCollateralStruct: beet.BeetArgsStruct; export type WithdrawCollateralInstructionAccounts = { user: web3.PublicKey; userTokens: web3.PublicKey; protocol: web3.PublicKey; collateralInfo: web3.PublicKey; collateralToken: web3.PublicKey; tokenProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const withdrawCollateralInstructionDiscriminator: number[]; export declare function createWithdrawCollateralInstruction(accounts: WithdrawCollateralInstructionAccounts, args: WithdrawCollateralInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;