interface WordCloudProps {
    width: number;
    height: number;
    words: WordData[];
    className: string;
}
export interface WordData {
    text: string;
    value: number;
}
export default function EchartWordCloud({ width, height, words, className, }: WordCloudProps): import("react/jsx-runtime").JSX.Element;
export {};
