import { Address, AccountMeta, AccountSignerMeta, Instruction, Option, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface SocializeLossV2Args { liquidityAmount: BN; } export interface SocializeLossV2Accounts { socializeLossAccounts: { lendingMarketOwner: TransactionSigner; obligation: Address; lendingMarket: Address; reserve: Address; instructionSysvarAccount: Address; }; farmsAccounts: { obligationFarmUserState: Option
; reserveFarmState: Option
; }; lendingMarketAuthority: Address; farmsProgram: Address; } export declare const layout: import("buffer-layout").Layout; export declare function socializeLossV2(args: SocializeLossV2Args, accounts: SocializeLossV2Accounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=socializeLossV2.d.ts.map