import * as React from "react"; export interface ScatterSeriesProps { /** * A Marker to draw. */ readonly marker?: any; /** * Given the data point return a Marker. */ readonly markerProvider?: (datum: any) => any; /** * Props to pass to the marker. */ readonly markerProps?: object; /** * Accessor for y value. */ readonly yAccessor: (data: any) => number | undefined; } export declare class ScatterSeries extends React.Component { render(): JSX.Element; private readonly drawOnCanvas; private readonly getMarkers; }