import { Component } from 'react'; import { ChartInternalShallowDataShape } from '../../common/data'; export interface ScatterSeriesProps { point: JSX.Element; yScale: any; xScale: any; data: ChartInternalShallowDataShape[]; id: string; height: number; width: number; isZoomed: boolean; animated: boolean; activeIds?: string[]; } export declare class ScatterSeries extends Component { static defaultProps: Partial; renderPoint(pointData: ChartInternalShallowDataShape, index: number): JSX.Element; render(): JSX.Element; }