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