import { WidgetConfiguration, GenericTableConfiguration } from '../../../../interfaces/WidgetInterfaces'; import { DataSet } from '../../../../interfaces/DisplayInterfaces'; import { WebPlatformApiService } from '../../../../services/WebPlatformApiService'; import { AppStateService } from '../../../../services/AppStateService'; import { IChartSeries } from './../../../highchart-platform/highchart-platform-interfaces'; export declare class ServerHitLogsComponent { private WebPlatformApiService; private appStateService; Config: WidgetConfiguration[]; tableConfig: GenericTableConfiguration; boxAndWhiskerData: IChartSeries[]; sourceDataSet: DataSet; constructor(WebPlatformApiService: WebPlatformApiService, appStateService: AppStateService); Refresh(): void; private prepareHighChartData(); }