import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactElement, CSSProperties, ReactNode } from 'react'; type MapDatum = { locale: string; count: number; }; type TooltipProps = { darkMode?: boolean; tooltipStyle?: CSSProperties; children?: ReactNode; }; type SimpleSouthKoreaMapChartProps = { darkMode?: boolean; data: MapDatum[]; unit?: string; setColorByCount: (count: number) => string; customTooltip?: ReactElement; }; declare const SimpleSouthKoreaMapChart: ({ darkMode, data, unit, setColorByCount, customTooltip }: SimpleSouthKoreaMapChartProps) => react_jsx_runtime.JSX.Element; export { type MapDatum, SimpleSouthKoreaMapChart, type SimpleSouthKoreaMapChartProps, type TooltipProps };