import type { FieldData } from '@/types'; import type { Base, Title, XAxis, YAxis, Label } from '@/components/types'; interface BaseProps extends Label, Omit, Omit { } export interface HeatMapChartProps extends Base, Title, Omit { themeColors?: { colors10: string[]; colors20: string[]; }; xAxisData?: FieldData[]; yAxisData?: FieldData[]; zAxisData?: FieldData[]; limit?: number; labelStyle?: 'value' | 'percentage' | 'all'; optionFilterList?: any[]; } export {};