import type { QueryProps } from 'src/shared/types';
import type { ChartToolTipProps, DistributionQueryProps, StatisticsQueryProps, TableColumn, TooltipField } from '../types';
interface TreeMapProps<TData extends {
    id: string | number;
}> {
    title?: string;
    colors?: string[];
    chartDetails?: any;
    url?: string;
    query: QueryProps;
    nameKey: string;
    valueKey: string;
    tooltipValueFormat: string;
    tooltipTitle?: string;
    tooltipUnit?: string;
    tooltipAdditionalFields?: (string | TooltipField)[];
    metricDetailData: {
        statisticsUrl?: string;
        title: string;
        topFiveChartTitle: string;
        bottomFiveChartTitle: 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;
        chartToolTip?: ChartToolTipProps;
        detailsTableTitle?: string;
    };
}
declare const TreeMap: <TData extends {
    id: string | number;
}>({ title, chartDetails, url, query, nameKey, valueKey, colors, tooltipTitle, tooltipValueFormat, tooltipUnit, tooltipAdditionalFields, metricDetailData, ...props }: TreeMapProps<TData>) => import("react/jsx-runtime").JSX.Element;
export default TreeMap;
