import type { LoanManagerUserLoanBorrow } from "../types/loan.js"; import type { PoolInfo } from "../types/pool.js"; export declare function initLoanBorrowInterests(isStable: boolean, poolInfo: PoolInfo): LoanManagerUserLoanBorrow; export declare function updateLoanBorrowInterests(borrow: LoanManagerUserLoanBorrow, amount: bigint, poolInfo: PoolInfo, isStableInterestRateToUpdate: boolean): LoanManagerUserLoanBorrow;