import * as react from 'react'; import { UIEventHandlers } from '../types/event.js'; declare const uiEvents: readonly ["mousedown", "mouseup", "click", "dblclick", "rightclick", "mouseover", "mouseout", "mousemove"]; type GroundOverlayOptions = { clickable?: boolean; opacity?: number; }; type Props = GroundOverlayOptions & { url: string; /** * bounds * @type naver.maps.Bounds | naver.maps.BoundsLiteral */ bounds: naver.maps.Bounds | naver.maps.BoundsLiteral; onOpacityChanged?: (value: number) => void; onClickableChanged?: (event: boolean) => void; } & UIEventHandlers; declare const GroundOverlay: react.ForwardRefExoticComponent void; onClickableChanged?: (event: boolean) => void; } & Partial void>> & react.RefAttributes>; export { GroundOverlay, type Props };