import { FC, SVGAttributes } from 'react'; import { Position, RawData, AnimationOptions, ChartPadding, GridConfig, AxisConfig, Dimensions, PointConfig, ShapeClickEventHandler, ScaleLinearDefinition } from 'eazychart-core/src/types'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; export interface ScatterChartProps extends SVGAttributes { data: RawData; point?: PointConfig; animationOptions?: AnimationOptions; padding?: ChartPadding; grid?: GridConfig; xAxis?: AxisConfig & ScaleLinearDefinition; yAxis?: AxisConfig & ScaleLinearDefinition; isRTL?: boolean; dimensions?: Partial; onShapeClick?: ShapeClickEventHandler; scopedSlots?: { TooltipComponent: FC; }; } export declare const ScatterChart: FC;