import React from 'react'; import { ChartInternalShallowDataShape } from '../data'; export interface CircleSeriesProps { color: any; index: number; activeValues?: any; data: ChartInternalShallowDataShape[]; yScale: any; xScale: any; show: boolean | 'hover' | 'first' | 'last'; animated: boolean; circle: JSX.Element; } export declare class CircleSeries extends React.Component { static defaultProps: Partial; isVisible(point: ChartInternalShallowDataShape, index: number): any; renderCircle: (point: ChartInternalShallowDataShape, index: number) => JSX.Element; render(): JSX.Element; }