import React from 'react'; import { IReportService } from '../IReportService'; import { ReportDefinition } from '../ReportDefinition'; import { EntitySchema } from 'fusefx-modeldescription'; declare const ReportTable: React.FC<{ reportService: IReportService; report: ReportDefinition; entitySchema: EntitySchema; }>; export default ReportTable;