import type { QueryProps } from 'src/shared/types';
import type { ChartToolTipProps, DistributionQueryProps, StatisticsQueryProps, TableColumn, TooltipField } from '../types';
interface ChartProps<TData extends {
    id: string | number;
}> {
    title?: string;
    colorScheme?: string[];
    chartDetails?: {
        columns?: any[];
        data?: any[];
    };
    themeColor?: string;
    className?: string;
    url?: string;
    query: QueryProps;
    sortOrder?: 'asc' | 'desc';
    tooltipValueFormat: string;
    tooltipTitle?: string;
    tooltipUnit?: string;
    tooltipAdditionalFields?: (string | TooltipField)[];
    metricDetailData: {
        title: string;
        topFiveChartTitle: string;
        bottomFiveChartTitle: 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<TData>[];
        dataSearchInputPlaceHolder: string;
        chartToolTip: ChartToolTipProps;
        detailsTableTitle?: string;
    };
}
declare const HorizontalBarChart: <TData extends {
    id: string | number;
}>({ title, colorScheme, className, url, tooltipValueFormat, query, sortOrder, tooltipTitle, tooltipUnit, tooltipAdditionalFields, metricDetailData, ...props }: ChartProps<TData>) => import("react/jsx-runtime").JSX.Element;
export default HorizontalBarChart;
