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