import * as i0 from '@angular/core'; import { Type } from '@angular/core'; import { TdSeriesDirective, ITdSeries } from '@covalent/echarts/base'; type TdWordcloudShape = 'circle' | 'cardioid' | 'diamond' | 'triangle-forward' | 'triangle' | 'pentagon' | 'star'; interface ITdWordcloudTextStyle { normal?: { fontFamily?: string; fontWeight?: string; color?: string | ((x: any) => string); }; emphasis?: { shadowBlur?: number; shadowColor?: string; }; } interface ITdWordCloudData { name: string; value: number; textStyle?: ITdWordcloudTextStyle; } interface ITdWordcloudSeries extends ITdSeries { data?: ITdWordCloudData[]; shape?: TdWordcloudShape; left?: string | number; top?: string | number; width?: string | number; height?: string | number; right?: string | number; bottom?: string | number; sizeRange?: number[]; rotationRange?: number[]; rotationStep?: number; gridSize?: number; drawOutOfBound?: boolean; textStyle?: ITdWordcloudTextStyle; } declare class TdChartSeriesWordcloudComponent extends TdSeriesDirective implements ITdWordcloudSeries { data?: ITdWordCloudData[]; shape?: TdWordcloudShape; left?: string | number; top?: string | number; width?: string | number; height?: string | number; right?: string | number; bottom?: string | number; sizeRange?: number[]; rotationRange?: number[]; rotationStep?: number; gridSize?: number; drawOutOfBound?: boolean; textStyle?: ITdWordcloudTextStyle; constructor(); getConfig(): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare const WORDCLOUD_MODULE_COMPONENTS: Type[]; /** * @deprecated This module is deprecated and will be removed in future versions. * Please migrate to using standalone components as soon as possible. */ declare class CovalentWordcloudEchartsModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { CovalentWordcloudEchartsModule, TdChartSeriesWordcloudComponent, WORDCLOUD_MODULE_COMPONENTS }; export type { ITdWordCloudData, ITdWordcloudSeries, ITdWordcloudTextStyle, TdWordcloudShape };