import type { Ref } from 'react'; import type { EventHandlerProps, MarkerEvent } from './types/overlay-events.js'; /** 지도 위에 마커를 표시한다. NaverMap 내부에서 사용. */ export interface MarkerProps extends EventHandlerProps { ref?: Ref; position?: naver.maps.Coord | naver.maps.CoordLiteral; defaultPosition?: naver.maps.Coord | naver.maps.CoordLiteral; icon?: string | naver.maps.ImageIcon | naver.maps.SymbolIcon | naver.maps.HtmlIcon; animation?: naver.maps.Animation; shape?: naver.maps.MarkerShape; title?: string; cursor?: string; clickable?: boolean; draggable?: boolean; visible?: boolean; zIndex?: number; } export declare function Marker({ ref, ...props }: MarkerProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=marker.d.ts.map