import { type FC } from 'react'; import type { MapProps } from '../Map'; import type { PathMap as _PathMap } from '../types/map'; export type PathMapProps = MapProps & _PathMap; declare const PathMap: FC; export default PathMap;