import type { DataSourceInfo, FieldData } from '@/types'; import type { CSSProperties } from 'react'; export interface RadarChartProps { title?: string; hasTitle?: boolean; style?: CSSProperties; titleFontSize?: number; titleTextAlign?: 'left' | 'right' | 'center'; isPonit?: boolean; ponitSize?: string; ponitShape?: string; themeColors: { colors10: string[]; colors20: string[]; }; classificationFieldList: FieldData[]; indicatorsFieldList?: FieldData[]; limit: number; dataSourceInfo: DataSourceInfo; }