import { FC } from 'react'; import { BubbleConfig, GeoJsonData } from 'eazychart-core/src/types'; import { MapChartProps } from './MapChart'; export interface BubbleMapChartProps extends MapChartProps { bubble: BubbleConfig; layers?: Array<{ geoJson: GeoJsonData; map: { stroke: string; fill: string; }; }>; } export declare const BubbleMapChart: FC;