import { default as React } from 'react'; import { DebtChartData } from '../../core/utils/DebtUtils'; interface DebtsTableProps { sx?: any; debts: DebtChartData[]; hoveredDebtGuid: string; onHoverRow: (debtGuid: string) => void; onClickRow: () => void; } export declare const DebtsTable: React.FC; export {};