import type { DataSourceInfo, FieldData } from '@/types'; import type { CSSProperties } from 'react'; export interface HistogramProps { style: CSSProperties; hasTitle: boolean; title: string; titleFontSize: number; titleTextAlign: 'left' | 'right' | 'center'; xAxisData: FieldData[]; yAxisData: FieldData[]; themeColors: { colors10: string[]; colors20: string[]; }; adjustType: string; limit: number; dataSourceInfo: DataSourceInfo; }