import { HighChartBase } from './highcharts/HighChartBase'; import { ResultExtender } from '../../model-extensions/result.extender'; import { HighChartYAxis } from './highcharts/HighChartYAxis'; import { IChartBandColors } from './ChartColors'; export declare class BaseChart { options: HighChartBase; validData: boolean; static GetComponent(selector: string): { selector: string; template: string; }; constructor(template: HighChartBase); getBands(data: ResultExtender, refColors: IChartBandColors): HighChartYAxis; }