import { Chart } from './chart'; import { ChartModelCartesian } from './model/cartesian-charts'; import { ChartConfig, AxisChartOptions } from './interfaces'; import { Modal, LayoutComponent, AxisChartsTooltip } from './components'; export declare class AxisChart extends Chart { services: any; model: ChartModelCartesian; constructor(holder: Element, chartConfigs: ChartConfig); protected getAxisChartComponents(graphFrameComponents: any[], configs?: any): (LayoutComponent | AxisChartsTooltip | Modal)[]; }