import React from 'react'; import type { BasePlotProps, Style, Theme } from '../types'; type ScatterDataItem = { x: number; y: number; [key: string]: string | number; }; export type ScatterProps = BasePlotProps & Theme & Style & { xField?: string; yField?: string; }; declare const Scatter: (props: ScatterProps) => React.JSX.Element; export default Scatter;