import { FC, ReactElement } from 'react'; import { ChartShallowDataShape } from '../common/data'; import { LinearAxisProps, LinearAxis } from '../common/Axis'; import { ScatterSeries, ScatterSeriesProps } from './ScatterSeries'; import { GridlineSeries, GridlineSeriesProps } from '../common/Gridline'; import { ChartZoomPanProps, ChartZoomPan } from '../common/ZoomPan'; import { ChartBrushProps, ChartBrush } from '../common/Brush'; import { ChartProps } from '../common/containers/ChartContainer'; export interface ScatterPlotProps extends ChartProps { /** * Data the chart will receive to render. */ data: ChartShallowDataShape[]; /** * The series component that renders the scatter components. */ series: ReactElement; /** * The linear axis component for the Y Axis of the chart. */ yAxis: ReactElement; /** * The linear axis component for the X Axis of the chart. */ xAxis: ReactElement; /** * The chart's background gridlines component. */ gridlines: ReactElement | null; /** * The chart's brush component. */ brush: ReactElement | null; /** * The chart's zoom pan component. */ zoomPan: ReactElement | null; /** * Any secondary axis components. Useful for multi-axis charts. */ secondaryAxis?: ReactElement[]; } export declare const ScatterPlot: FC>;