import type { Point2D } from '../../math'; import type { HoverStyle, LabelStyle, PointStyle } from '../core/types'; import type { SVGAttributes } from 'svelte/elements'; import type { TweenOptions } from 'svelte/motion'; type $$ComponentProps = Omit, `style` | `offset` | `transform`> & { x: number; y: number; style?: PointStyle; hover?: HoverStyle; label?: LabelStyle; offset?: Point2D; point_tween?: TweenOptions; is_hovered?: boolean; is_selected?: boolean; is_dimmed?: boolean; overlay_only?: boolean; leader_line_threshold?: number; hit_padding?: number; }; declare const ScatterPoint: import("svelte").Component<$$ComponentProps, {}, "point_tween">; type ScatterPoint = ReturnType; export default ScatterPoint;