import { ethers } from "ethers"; export interface IBorrowerClient { getLoan(creditLineAddress: string, amount: string, assetTokenAddress: string, overrides?: ethers.Overrides): Promise; repayLoan(creditLineAddress: string, amount: string, overrides?: ethers.Overrides): Promise; repayLoanInFull(creditLineAddress: string, overrides?: ethers.Overrides): Promise; getNextPaymentAmount(creditLineAddress: string, asOfBlock: number): Promise; }