import { HighChartPlotDefinition } from './HighChartPlotDefinition'; export interface IHighChartTitle { text: string; style: { color: string; }; enabled: boolean; } export declare class HighChartYAxis { index: number; gridLineWidth: number; gridLineDashStyle: string; endOnTick: boolean; startOnTick: boolean; minPadding: number; maxPadding: number; title: IHighChartTitle; labels: IHighChartTitle; plotBands: Array; min: number; max: number; hideLabels(): void; }