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