import BigNumber from 'bignumber.js'; import { Profile, Reserve } from './types'; import { AptosClient } from '../../utils/clients/types'; export declare function getName(accountName: string): string; export declare function getBorrowApr(utilization: BigNumber, borrowedAmount: BigNumber, availableAmount: BigNumber, reserveData: Reserve): number; export declare function getDepositApr(utilization: BigNumber, borrowApr: number, reserveData: Reserve): number; export declare function getProfileAmounts(profile: Profile | null, client: AptosClient): Promise<{ deposits: { address: string; amount: string; }[]; borrows: { address: string; amount: string; }[]; }>; export declare function getProfileBorrows(profile: Profile | null, client: AptosClient): Promise<{ address: string; amount: string; }[]>; export declare function getProfileDeposits(profile: Profile | null, client: AptosClient): Promise<{ address: string; amount: string; }[]>;