import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; type MapElementType = { setMap(map: naver.maps.Map | null): void; getMap(): naver.maps.Map | null; }; type Props = { element: MapElementType; children?: ReactNode; autoMount?: boolean; }; declare function Overlay(props: Props): react_jsx_runtime.JSX.Element; export { Overlay, type Props };