import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface LiquidateObligationAndRedeemReserveCollateralArgs { liquidityAmount: BN; minAcceptableReceivedLiquidityAmount: BN; maxAllowedLtvOverridePercent: BN; } export interface LiquidateObligationAndRedeemReserveCollateralAccounts { liquidator: TransactionSigner; obligation: Address; lendingMarket: Address; lendingMarketAuthority: Address; repayReserve: Address; repayReserveLiquidityMint: Address; repayReserveLiquiditySupply: Address; withdrawReserve: Address; withdrawReserveLiquidityMint: Address; withdrawReserveCollateralMint: Address; withdrawReserveCollateralSupply: Address; withdrawReserveLiquiditySupply: Address; withdrawReserveLiquidityFeeReceiver: Address; userSourceLiquidity: Address; userDestinationCollateral: Address; userDestinationLiquidity: Address; collateralTokenProgram: Address; repayLiquidityTokenProgram: Address; withdrawLiquidityTokenProgram: Address; instructionSysvarAccount: Address; } export declare const layout: import("buffer-layout").Layout; export declare function liquidateObligationAndRedeemReserveCollateral(args: LiquidateObligationAndRedeemReserveCollateralArgs, accounts: LiquidateObligationAndRedeemReserveCollateralAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=liquidateObligationAndRedeemReserveCollateral.d.ts.map