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