import type { QueryProps } from 'src/shared/types'; import type { ChartToolTipProps, DistributionChartTooltip, DistributionQueryProps, StatisticsQueryProps, TableColumn, TooltipField } from '../types'; interface LineGraphProps { title: string; yAxisLabel: string; xAxisLabel?: string; color?: string; className?: string; xAxisDataKey: string; yAxisDataKey: string; categoryDataKey: string; url?: string; query: QueryProps; chartToolTip: ChartToolTipProps; tooltipValueFormat: string; tooltipTitle?: string; tooltipUnit?: string; seriesName?: string; tooltipAdditionalFields?: (string | TooltipField)[]; yAxisLabelFormatter?: (value: number) => string; metricDetailData: { title: string; statisticsUrl?: 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[]; dataSearchInputPlaceHolder: string; detailsTableTitle?: string; topFiveChartTitle: string; bottomFiveChartTitle: string; distributionChartTooltip: DistributionChartTooltip; }; } declare const LineGraph: ({ title, yAxisLabel, xAxisLabel, color, className, xAxisDataKey, yAxisDataKey, categoryDataKey, url, query, chartToolTip, tooltipValueFormat, tooltipTitle, tooltipUnit, tooltipAdditionalFields, yAxisLabelFormatter, metricDetailData, showDetailsModal, ...props }: LineGraphProps & { showDetailsModal?: boolean; }) => import("react/jsx-runtime").JSX.Element; export default LineGraph;