import type { Ref } from 'react'; /** React children을 지도 위 특정 좌표에 렌더링한다. Portal 기반. */ export interface CustomOverlayProps { ref?: Ref; position: naver.maps.LatLng | naver.maps.LatLngLiteral; children: React.ReactNode; pane?: string; anchor?: naver.maps.Point; zIndex?: number; } export declare function CustomOverlay({ ref, position, children, pane, anchor, zIndex, }: CustomOverlayProps): import("react").ReactPortal | null; //# sourceMappingURL=custom-overlay.d.ts.map