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;
    symbolConfig?: {
        symbol?: string;
        size?: number;
        color?: string;
        borderColor?: string;
        borderWidth?: number;
    };
}
declare const ChartFormatter: React.FC<ChartFormatterProps>;
export default ChartFormatter;
