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