import React, { FC } from 'react'; import { PointDatum } from 'eazychart-core/src/types'; export interface MapBubblesProps { geoDomainKey: string; rDomainKey: string; stroke?: string; strokeWidth?: number; opacity?: number; scopedSlots?: { default: ({ shapeData }: { shapeData: PointDatum[]; }) => React.ReactChild; }; } export declare const MapBubbles: FC;