import type { FieldData } from '@/types'; import type { Base, Title, Legend, Label } from '@/components/types'; export interface FunnelChartProps extends Base, Title, Legend, Label { groupData?: FieldData[]; indicatorsData?: FieldData[]; themeColors?: { colors10: string[]; colors20: string[]; }; limit?: number; isTransposed?: boolean; conversionTag?: boolean; optionFilterList?: any[]; }