import React from 'react'; interface ChartFormatterProps { metricData: any[]; xAxisDataValueKey: string; seriesDataNameKey: string; seriesDataValueKey: string; chartType: 'bar' | 'line'; chartOptions: any; chartHeight?: string | number; notMerge?: boolean; stacked?: boolean; smooth?: boolean; symbolConfig?: { symbol?: string; size?: number; color?: string; borderColor?: string; borderWidth?: number; }; } declare const ChartFormatter: React.FC; export default ChartFormatter;