import type { FieldData } from '@/types'; import type { Base, Title, XAxis, YAxis, Label, Legend } from '@/components/types'; export interface HistogramProps extends Base, Title, XAxis, Legend, Omit, Omit { xAxisData?: FieldData[]; yAxisData?: FieldData[]; themeColors?: { colors10: string[]; colors20: string[]; }; adjustType?: string; limit?: number; isBar?: boolean; optionFilterList?: any[]; sliderBackgroundColor?: string; sliderTextColor?: string; }