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