import * as react from 'react';
import { UIEventHandlers } from '../types/event.mjs';

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<typeof uiEvents>;
declare const GroundOverlay: react.ForwardRefExoticComponent<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;
} & Partial<Record<"onClick" | "onMousedown" | "onMouseup" | "onDblclick" | "onRightclick" | "onMouseover" | "onMouseout" | "onMousemove", (e: naver.maps.PointerEvent) => void>> & react.RefAttributes<naver.maps.GroundOverlay>>;

export { GroundOverlay, type Props };
