import { RaionCode } from '@/types';
import { MapStyle, ThresholdColor } from '@dkkoval/react-stats-map';
export interface MDMapProps {
    width: number;
    height: number;
    data: Record<RaionCode, number>;
    valueName: string;
    title: string;
    hideLegend?: boolean;
    hideTitle?: boolean;
    mapStyle?: MapStyle;
    thresholdColors?: ThresholdColor[];
}
export declare function MDMap(props: MDMapProps): import("react/jsx-runtime").JSX.Element;
