import React from 'react'; import { IReportService } from '../IReportService'; import { ReportDefinition } from '../ReportDefinition'; declare const ReportChart: React.FC<{ reportServiceUrl: string; dark: boolean; }>; export declare const ReportChart1: React.FC<{ reportService: IReportService; report: ReportDefinition; dark: boolean; legend: boolean; xAxis: boolean; yAxis: boolean; }>; export declare const ReportChart1Inner: React.FC<{ reportService: IReportService; report: ReportDefinition; dark: boolean; legend: boolean; xAxis: boolean; yAxis: boolean; }>; export default ReportChart;