import React from "react"; interface Subsection { title: string; value: string; } interface Section { title: string; value: string; subsections: Subsection[]; } interface ReportWidgetProps { title: string; value: string; sections: Section[]; } declare const ReportWidget: React.FC; export default ReportWidget;