import type { ChartPad } from '../../../utils/chart.js'; export interface ScatterPoint { x: number; y: number; label?: string; size?: number; color?: string; group?: string; } interface ScatterChartProps { data?: ScatterPoint[]; width?: number; height?: number; pad?: ChartPad; xLabel?: string; yLabel?: string; unitX?: string; unitY?: string; dotRadius?: number; showGrid?: boolean; class?: string; onselect?: (point: ScatterPoint) => void; } declare const ScatterChart: import("svelte").Component; type ScatterChart = ReturnType; export default ScatterChart;