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