import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; import * as types from "../types"; export declare const DISCRIMINATOR: Buffer; export interface SetBorrowOrderV2Args { orderIdx: number; orderConfig: types.BorrowOrderConfigArgsFields; minExpectedCurrentRemainingDebtAmount: BN; } export interface SetBorrowOrderV2Accounts { owner: TransactionSigner; obligation: Address; lendingMarket: Address; reserve: Address; filledDebtDestination: Address; debtLiquidityMint: Address; instructionSysvarAccount: Address; eventAuthority: Address; program: Address; } export declare const layout: import("buffer-layout").Layout; export declare function setBorrowOrderV2(args: SetBorrowOrderV2Args, accounts: SetBorrowOrderV2Accounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=setBorrowOrderV2.d.ts.map