import type { FieldData } from '@/types'; import type { Base, Title, XAxis, YAxis, Label, Legend } from '@/components/types'; export interface LineChartProps extends Base, Title, XAxis, Legend, Omit, Omit { adjustType?: string; xAxisData?: FieldData[]; yAxisData?: FieldData[]; referenceData?: FieldData[]; isCurve?: boolean; isPonit?: boolean; isFill?: boolean; ponitSize?: number; ponitShape?: 'circle' | 'square' | 'bowtie' | 'diamond' | 'hexagon' | 'triangle' | 'triangle-down'; themeColors?: { colors10: string[]; colors20: string[]; }; limit?: number; optionFilterList?: any[]; }