import React, { FC } from 'react'; import { PointDatum } from 'eazychart-core/src/types'; import { PointsProps } from '@/components/Points'; export interface BubblesProps extends PointsProps { rDomainKey: string; fill?: string; scopedSlots?: { default: ({ shapeData }: { shapeData: PointDatum[]; }) => React.ReactChild; }; } export declare const Bubbles: FC;