import type { ChartTheme } from '../themes/types.js'; export interface ScatterChartProps { data: Record[]; x: string; y: string; size?: string; category?: string; width: number; height: number; theme?: ChartTheme; color?: string; margin?: { top: number; right: number; bottom: number; left: number; }; } export declare function ScatterChart({ data, x, y, size, category, width, height, theme, color, margin, }: ScatterChartProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=ScatterChart.d.ts.map