import { type FC } from 'react'; import type { MapProps } from '../Map'; import type { PinMap as PinMapType } from '../types/map'; export type PinMapProps = PinMapType & MapProps; declare const PinMap: FC; export default PinMap;