import WordCloud2 from 'wordcloud'; export type WordCloudProps = { list: WordCloud2.Options['list']; className?: string; tooltip?: boolean; onClick?: WordCloud2.EventCallback; options?: Partial>; }; declare const WordCloud: (props: WordCloudProps) => import("react/jsx-runtime").JSX.Element; export default WordCloud;