import { DataResponse, Dimension, Measure } from '@embeddable.com/core'; import { ChartCardHeaderProps } from '../../shared/ChartCard/ChartCard'; import type { ScatterChartProOptionsClickArg } from './ScatterChartPro.types'; export type ScatterChartProProps = { xMeasure: Measure; yMeasure: 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; onPointClick?: (payload: ScatterChartProOptionsClickArg) => void; } & ChartCardHeaderProps; declare const ScatterChartPro: (props: ScatterChartProProps) => import("react").JSX.Element; export default ScatterChartPro; //# sourceMappingURL=index.d.ts.map