/// import * as anchor from '@project-serum/anchor'; export { AllAccounts, CollectionInfoView, LiquidityPoolView, DepositView, LoanView, } from './../contract_model/accounts'; import { PublicKey, Transaction } from '@solana/web3.js'; export declare function updateLiquidityPool({ programId, provider, admin, liquidityPool, rewardInterestRateTime, rewardInterestRatePrice, feeInterestRateTime, feeInterestRatePrice, id, period, sendTxn, }: { programId: PublicKey; provider: anchor.Provider; admin: PublicKey; liquidityPool: PublicKey; rewardInterestRateTime: number | anchor.BN; feeInterestRateTime: number | anchor.BN; rewardInterestRatePrice: number | anchor.BN; feeInterestRatePrice: number | anchor.BN; id: number | anchor.BN; period: number | anchor.BN; sendTxn: (transaction: Transaction) => Promise; }): Promise;