import { AxisChart } from '../axis-chart';
import { BoxplotChartModel } from '../model/boxplot';
import { BoxplotChartOptions } from '../interfaces/charts';
import { ChartConfig } from '../interfaces/model';
import { Component } from '../components/component';
export declare class BoxplotChart extends AxisChart {
    model: BoxplotChartModel;
    constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<BoxplotChartOptions>);
    /**
     * Retrieves the components to be rendered inside the graph frame.
     *
     * @returns {Component[]} An array of components to be rendered.
     */
    getComponents(): Component[];
}
