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