export declare type IHighchartsAxis = Partial & Partial & Highcharts.ChartParallelAxesOptions; export interface IHighchartsAxisExtend extends IHighchartsAxis { len?: number | null; transA?: number; translationSlope?: number; options?: Highcharts.YAxisOptions; chart?: any; translate?(val: number, backwards: number | boolean, cvsCoord: number | boolean, old: number | boolean, handleLog: number | boolean, pointPlacement?: number): number | undefined; } declare type IHighchartsPoint = Partial; export declare type IHighchartsSeriesOptionsType = Partial; interface IHighchartsSeries { area?: Highcharts.SVGElement; type: string; name: string; chart: Highcharts.Chart; data: IHighchartsPoint[]; graph?: Highcharts.SVGElement; options: IHighchartsSeriesOptionsType; points: IHighchartsPoint[]; visible: boolean; xAxis: IHighchartsAxisExtend; yAxis: IHighchartsAxisExtend; } export interface IHighchartsSeriesExtend extends Partial { pointPlacementToXValue?(): number; } export {};