import type { QueryProps } from 'src/shared/types'; import type { ChartToolTipProps, DistributionQueryProps, StatisticsQueryProps, TableColumn } from '../types'; interface ItemPerformanceCardProps { title?: string; query: QueryProps; url?: string; itemNameKey: string; amountValueKey: string; unitsValueKey: string; metricDetailData?: { statisticsUrl?: string; itemStatisticsQuery: StatisticsQueryProps; valueMetricsQuery: StatisticsQueryProps; averageMetricsQuery: StatisticsQueryProps; distributionMetricsQuery: DistributionQueryProps; nameKey: string; valueKey: string; dataGridSearchKey: string; dataGridColumns: TableColumn[]; dataSearchInputPlaceHolder: string; chartToolTip?: ChartToolTipProps; detailsTableTitle?: string; }; } declare const ItemPerformanceCard: ({ title, query, url, itemNameKey, amountValueKey, unitsValueKey, metricDetailData, }: ItemPerformanceCardProps) => import("react/jsx-runtime").JSX.Element; export default ItemPerformanceCard;