import { FC } from 'react'; import { Position } from '../../render/types'; import { PropsWithChildrenAndClassName } from '../../types'; export type ImageMapHotspotProps = PropsWithChildrenAndClassName<{ position: Position; subtype: 'focus' | 'links' | 'legend'; initialActive: boolean; index?: number | string; }>; declare const ImageMapHotspot: FC; export { ImageMapHotspot };