import type { QueryProps } from 'src/shared/types';
import type { ChartToolTipProps, DistributionQueryProps, StatisticsQueryProps, TableColumn, TooltipField } from '../types';
interface LineChartProps<TData extends {
    id: string | number;
}> {
    data: any;
    title?: string;
    colors?: string[];
    url?: string;
    xAxisLabel?: string;
    yAxisLabel?: string;
    chartDetails?: {
        columns?: any[];
        data?: any[];
    };
    query: QueryProps;
    seriesDataNameKey: string;
    seriesDataValueKey: string;
    xAxisDataValueKey: string;
    chartToolTip: ChartToolTipProps;
    tooltipValueFormat: string;
    tooltipTitle?: string;
    tooltipUnit?: string;
    tooltipAdditionalFields?: (string | TooltipField)[];
    metricDetailData: {
        statisticsUrl?: string;
        title: string;
        itemStatisticsQuery: StatisticsQueryProps;
        valueMetricsQuery: StatisticsQueryProps;
        averageMetricsQuery: StatisticsQueryProps;
        distributionMetricsQuery: DistributionQueryProps;
        yAxisDataNameKey: string;
        xAxisNameKey: string;
        xAxisLabel: string;
        yAxisLabel: string;
        nameKey: string;
        valueKey: string;
        dataGridSearchKey: string;
        dataGridColumns: TableColumn<TData>[];
        dataSearchInputPlaceHolder: string;
        detailsTableTitle?: string;
        chartToolTip?: ChartToolTipProps;
        topFiveChartTitle?: string;
        bottomFiveChartTitle?: string;
    };
}
declare const LineChart: <TData extends {
    id: string | number;
}>({ query, data, title, xAxisLabel, yAxisLabel, url, tooltipValueFormat, xAxisDataValueKey, seriesDataNameKey, seriesDataValueKey, tooltipTitle, tooltipUnit, tooltipAdditionalFields, metricDetailData, ...props }: LineChartProps<TData>) => import("react/jsx-runtime").JSX.Element;
export default LineChart;
