Version: 0.1.00.2.00.2.10.2.20.2.30.3.00.3.10.3.20.3.30.3.40.3.50.3.60.3.70.3.80.3.90.3.100.3.110.3.120.3.130.3.140.3.150.3.160.3.170.3.180.3.190.3.200.3.210.4.00.4.10.4.20.4.30.4.50.4.60.4.70.4.80.4.90.5.00.5.10.5.20.6.00.6.10.6.20.6.30.7.00.8.00.8.10.8.20.8.30.8.40.8.50.8.60.8.70.8.80.9.00.9.10.9.20.9.30.10.00.10.10.10.20.10.30.10.40.10.50.10.60.10.70.10.80.10.90.10.100.11.00.12.00.12.10.12.20.12.30.12.40.12.50.12.60.12.70.12.80.13.00.13.10.13.20.13.30.13.40.14.10.14.20.15.00.15.10.15.20.15.30.16.00.16.10.16.20.17.10.18.00.19.00.19.10.20.00.20.10.20.20.20.30.20.40.20.50.20.60.20.70.20.80.21.00.21.20.22.00.22.10.22.20.22.30.22.40.22.51.0.0-alpha.01.0.0-alpha.11.0.0-alpha.21.0.0-alpha.31.0.0-alpha.41.0.0-alpha.61.0.0-apha.51.0.0-beta.01.0.0-beta.11.0.0-beta.21.0.0-beta.31.0.0-beta.41.0.0-beta.51.0.0-beta.61.0.0-beta.71.0.0-beta.81.0.0-beta.91.0.0-beta.101.0.01.0.11.1.01.2.01.3.01.3.11.3.21.3.31.3.41.3.51.3.61.4.01.4.11.4.21.4.31.4.41.5.01.6.01.6.11.6.21.7.01.7.11.8.01.8.11.8.21.8.31.8.41.8.51.8.62.0.0-beta.02.0.0-beta.12.0.0-beta.22.0.0-beta.32.0.0-beta.42.0.0-beta.52.0.0-beta.62.0.0-beta.72.0.0-beta.82.0.02.0.12.0.22.0.32.0.42.0.52.0.62.0.72.0.82.0.92.0.102.1.02.1.12.1.22.1.32.1.42.1.52.1.62.1.72.1.82.1.92.1.102.1.112.1.122.1.132.1.142.1.152.1.162.2.02.3.0-alpha.02.3.0-alpha.12.3.02.3.12.3.22.4.02.4.12.4.22.4.32.5.02.6.02.6.12.6.22.7.0-alpha.02.7.02.7.12.7.22.7.32.8.02.9.02.9.12.9.22.9.32.10.02.10.12.10.22.10.32.10.42.11.02.12.02.12.12.12.22.12.32.12.42.12.52.12.62.12.72.13.0-alpha.02.13.0-alpha.12.13.0-alpha.22.13.0-alpha.32.13.0-alpha.42.13.0-alpha.52.13.02.13.12.13.22.13.32.14.02.14.12.15.03.0.0-alpha.03.0.0-alpha.13.0.0-alpha.2
/**
* @fileOverview Dot
*/
import React from 'react';
import { PresentationAttributesWithProps } from '../util/types';
interface DotProps {
className?: string;
cx?: number;
cy?: number;
r?: number;
clipDot?: boolean;
}
export type Props = PresentationAttributesWithProps<DotProps, SVGCircleElement> & DotProps;
export declare const Dot: React.FC<Props>;
export {};