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 SetBorrowOrderArgs { orderConfig: types.BorrowOrderConfigArgsFields; minExpectedCurrentRemainingDebtAmount: BN; } export interface SetBorrowOrderAccounts { 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 setBorrowOrder(args: SetBorrowOrderArgs, accounts: SetBorrowOrderAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=setBorrowOrder.d.ts.map