import type { FieldData } from '@/types'; import type { Base, Title, Label, Legend } from '@/components/types'; export interface PieChartProps extends Base, Title, Label, Legend { dataSource?: any; isRing?: boolean; innerRadius?: number; themeColors?: { colors10: string[]; colors20: string[]; }; limit?: number; xAxisData?: FieldData[]; yAxisData?: FieldData[]; optionFilterList?: any[]; }