export interface IChartBandColors { PANIC_BAND: string; ABNORMAL_BAND: string; NORMAL_BAND: string; } export interface IChartPointColors { NORMAL_COLOR_POINT: string; ABNORMAL_COLOR_POINT: string; PANIC_COLOR_POINT: string; } export interface ISimplifiedColors { NORMAL_COLOR: string; OUT_OF_RANGE_COLOR: string; NORMAL_BAND: string; } export declare class ChartColors { static REFEREMCE_RANGE_COLORS: IChartBandColors; static RANGE_COLORS: IChartBandColors; static POINT_RANGE_COLORS: IChartPointColors; static POINT_COMPOSITE_COLORS: Object; static SIMPLIFIED_COLORS: ISimplifiedColors; }