import { Address, AccountMeta, AccountSignerMeta, Instruction, Option, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface DepositObligationCollateralV2Args { collateralAmount: BN; } export interface DepositObligationCollateralV2Accounts { depositAccounts: { owner: TransactionSigner; obligation: Address; lendingMarket: Address; depositReserve: Address; reserveDestinationCollateral: Address; userSourceCollateral: Address; tokenProgram: Address; instructionSysvarAccount: Address; }; lendingMarketAuthority: Address; farmsAccounts: { obligationFarmUserState: Option
; reserveFarmState: Option
; }; farmsProgram: Address; } export declare const layout: import("buffer-layout").Layout; export declare function depositObligationCollateralV2(args: DepositObligationCollateralV2Args, accounts: DepositObligationCollateralV2Accounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=depositObligationCollateralV2.d.ts.map