import { BN, web3 } from "@coral-xyz/anchor";
import { BanxPoolSettingsStateDecodeEnum } from "../../types";
export interface BanxPoolMarketSettingsInputParams {
    banxSettingsPoolState: BanxPoolSettingsStateDecodeEnum;
    poolShareBp: BN;
    offerLtvBp: BN;
    liquidationLtvBp: BN;
    offerAprBp: BN;
    rollDuration: BN;
    maxMarketCap: BN;
}
type CreateBanxPoolMarketSettings = (params: {
    programId: web3.PublicKey;
    connection: web3.Connection;
    args: {
        params: BanxPoolMarketSettingsInputParams;
    };
    accounts: {
        userPubkey: web3.PublicKey;
        banxPool: web3.PublicKey;
        bondOffer: web3.PublicKey;
    };
    sendTxn: (transaction: web3.Transaction, signers: web3.Signer[]) => Promise<void>;
}) => Promise<{
    instructions: web3.TransactionInstruction[];
    signers: web3.Signer[];
    accounts: {
        banxPool: web3.PublicKey;
        banxPoolMarketSettings: web3.PublicKey;
    };
}>;
export declare const createBanxPoolMarketSettings: CreateBanxPoolMarketSettings;
export {};
