import React from "react"; interface Category { total: number; counterparties: { [key: string]: number; }; } interface Subsection { title: string; value: number; categories: { [key: string]: Category; }; } interface Section { title: string; value: number; subsections: Subsection[]; } interface IncomeStatementWidgetProps { title: string; netIncome: number; sections: Section[]; } declare const IncomeStatementWidget: React.FC; export default IncomeStatementWidget;