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