import { FC, SVGAttributes } from 'react'; import { GeoFeatureDatum } from 'eazychart-core/src/types'; export interface MapPathProps extends SVGAttributes { shapeDatum: GeoFeatureDatum; } export declare const MapPath: FC;