import type { QueryProps } from 'src/shared/types';
import React from 'react';
import type { ChartToolTipProps, TooltipField } from '../types';
interface BubbleChartProps {
    title?: string;
    xAxisLabel?: string;
    yAxisLabel?: string;
    colorPalette?: string[];
    themeColor?: string;
    className?: string;
    url?: string;
    query: QueryProps;
    xAxisDataKey: string;
    yAxisDataKey: string;
    sizeDataKey: string;
    categoryDataKey: string;
    chartToolTip: ChartToolTipProps;
    tooltipValueFormat: string;
    tooltipTitle?: string;
    tooltipUnit?: string;
    tooltipAdditionalFields?: (string | TooltipField)[];
}
declare const BubbleChart: React.FC<BubbleChartProps>;
export default BubbleChart;
