import { DataResponse, Dimension, Measure } from '@embeddable.com/core'; import { ChartCardHeaderProps } from '../../shared/ChartCard/ChartCard'; import type { BubbleChartProOptionsClickArg } from './BubbleChartPro.types'; export type BubbleChartProProps = { xMeasure: Measure; yMeasure: Measure; bubbleSizeMeasure: Measure; pointDimension: Dimension; groupByDimension?: Dimension; results: DataResponse; pointColor?: string; showLegend?: boolean; showTooltips?: boolean; showPointLabels?: boolean; showValueLabels?: boolean; showLogarithmicScale?: boolean; xAxisLabel?: string; yAxisLabel?: string; xAxisRangeMin?: number; xAxisRangeMax?: number; yAxisRangeMin?: number; yAxisRangeMax?: number; reverseXAxis?: boolean; bubbleRadiusMin?: number; bubbleRadiusMax?: number; onPointClick?: (payload: BubbleChartProOptionsClickArg) => void; } & ChartCardHeaderProps; declare const BubbleChartPro: (props: BubbleChartProProps) => import("react").JSX.Element; export default BubbleChartPro; //# sourceMappingURL=index.d.ts.map