export type WordCloudChartTone = "category1" | "category2" | "category3" | "category4" | "category5" | "category6" | "category7" | "category8"; export type WordCloudChartWord = { text: string; weight: number; tone?: WordCloudChartTone; }; type WordCloudChartProps = { /** Mots à placer : la taille de police est proportionnelle au poids. */ data: WordCloudChartWord[]; width?: number; height?: number; label: string; class?: string; }; declare const WordCloudChart: import("svelte").Component; type WordCloudChart = ReturnType; export default WordCloudChart; //# sourceMappingURL=WordCloudChart.svelte.d.ts.map