import React from "react"; import { PaletteName } from "../utils/PalletUtils"; import { ScatterChartData } from "./types"; export interface ScatterChartProps { data: ScatterChartData; xAxisDataKey?: string; yAxisDataKey?: string; theme?: PaletteName; customPalette?: string[]; grid?: boolean; legend?: boolean; isAnimationActive?: boolean; xAxisLabel?: React.ReactNode; yAxisLabel?: React.ReactNode; className?: string; height?: number | string; width?: number | string; shape?: "circle" | "square"; } export declare const ScatterChart: ({ data, xAxisDataKey, yAxisDataKey, theme, customPalette, grid, xAxisLabel, yAxisLabel, legend, isAnimationActive, className, height, width, shape, }: ScatterChartProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ScatterChart.d.ts.map