import { AxisPointerOptions } from '../../models'; import AtomComponent from '../../atomComponent'; import { SeriesCategory } from '../../constants'; export default class AxisPointer extends AtomComponent { private static readonly defaultOptions; protected seriesCategory: SeriesCategory; private options; private selectedIndex; private xAxisOptions; private yAxisOptions; private data; constructor(chart: any, options: AxisPointerOptions); render(): void; private bindInteraction; private drawAxisPointer; private drawAxisPointerOfLineType; private drawAxisPointerOfShadowType; private processOptions; }