import { FC } from 'react'; import { PointProps } from './Point'; export interface BubbleProps extends PointProps { fill?: string; } export declare const Bubble: FC;