import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface RepayObligationLiquidityArgs { liquidityAmount: BN; } export interface RepayObligationLiquidityAccounts { owner: TransactionSigner; obligation: Address; lendingMarket: Address; repayReserve: Address; reserveLiquidityMint: Address; reserveDestinationLiquidity: Address; userSourceLiquidity: Address; tokenProgram: Address; instructionSysvarAccount: Address; } export declare const layout: import("buffer-layout").Layout; export declare function repayObligationLiquidity(args: RepayObligationLiquidityArgs, accounts: RepayObligationLiquidityAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=repayObligationLiquidity.d.ts.map