import React, { FC, SVGAttributes } from 'react'; import { AnimationOptions, ChartPadding, Dimensions, RawData, GeoJsonData, MapConfig, ShapeClickEventHandler } from 'eazychart-core/src/types'; import { LegendProps } from '@/components/addons/legend/Legend'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; export interface MapChartProps extends SVGAttributes { data: RawData; geoJson: GeoJsonData; colors?: string[]; map: MapConfig; animationOptions?: AnimationOptions; padding?: ChartPadding; dimensions?: Partial; onShapeClick?: ShapeClickEventHandler; scopedSlots?: { LegendComponent: React.FC; TooltipComponent: React.FC; }; } export declare const MapChart: FC;