import type { Address } from "viem"; import type { ChartsCreditManagerPayload } from "./credit-manager-payload.js"; export declare class ChartsCreditManagerData { readonly address: Address; readonly underlyingToken: Address; readonly configurator: Address; readonly creditFacade: Address; readonly pool: Address; readonly version: number; readonly name: string; readonly marketConfigurator: Address; readonly borrowRate: number; readonly borrowRateOld: number; readonly borrowRateChange: number; readonly minAmount: bigint; readonly maxAmount: bigint; readonly maxLeverageFactor: number; readonly availableLiquidity: bigint; readonly feeInterest: number; readonly feeLiquidation: number; readonly feeLiquidationExpired: number; readonly openedAccountsCount: number; readonly totalOpenedAccounts: number; readonly totalClosedAccounts: number; readonly totalRepaidAccounts: number; readonly totalLiquidatedAccounts: number; readonly totalBorrowed: bigint; readonly totalBorrowedOld: bigint; readonly totalBorrowedChange: number; readonly totalDebtLimit: bigint; readonly totalRepaid: bigint; readonly totalProfit: bigint; readonly totalProfitOld: bigint; readonly pnlChange: number; readonly totalLosses: bigint; readonly totalLossesOld: bigint; readonly totalBorrowedInUSD: number; readonly totalLossesInUSD: number; readonly totalProfitInUSD: number; readonly totalRepaidInUSD: number; readonly availableLiquidityInUSD: number; readonly openedAccountsCountChange: number; readonly totalOpenedAccountsChange: number; readonly totalClosedAccountsChange: number; readonly totalLiquidatedAccountsChange: number; readonly liquidationThresholds: Record; constructor(payload: ChartsCreditManagerPayload); }