import { ElementRef } from '@angular/core'; import { BaseWidget } from '../../BaseWidget/BaseWidget.component'; import { IChartData } from './../../../canvas-chart/canvas-chart-interfaces'; import { DisplayStateService } from '../../../../services/DisplayStateService'; import { AppStateService } from '../../../../services/AppStateService'; import { WebPlatformApiService } from '../../../../services/WebPlatformApiService'; import { ClientSettingsService } from '../../../../services/ClientSettingsService'; export declare class WidgetHelpComponent extends BaseWidget { protected element: ElementRef; protected clientSettingsService: ClientSettingsService; protected displayStateService: DisplayStateService; protected appStateService: AppStateService; protected webPlatformApiService: WebPlatformApiService; groupData: IChartData[]; boxAndWhiskerData: IChartData[]; scatterData: IChartData[]; constructor(element: ElementRef, clientSettingsService: ClientSettingsService, displayStateService: DisplayStateService, appStateService: AppStateService, webPlatformApiService: WebPlatformApiService); }