interface POIProps extends map4d.POIOptions { position: any; title?: string; subtitle?: string; color?: string; type?: string; icon?: string; elevation?: number; zIndex?: number; visible?: boolean; draggable?: boolean; clickable?: boolean; map?: map4d.Map; onCreated?: (poi: map4d.POI) => void; onClick?: (args: any) => void; onHover?: (args: any) => void; } declare const MFPOI: (props: POIProps) => any; export default MFPOI;