import { PureComponent } from 'react'; import { PresentationAttributesWithProps } from '../util/types'; interface DotProps { className?: string; cx?: number; cy?: number; r?: number; } export declare type Props = PresentationAttributesWithProps & DotProps; export declare class Dot extends PureComponent { render(): JSX.Element; } export {};