import { type MediaOverlayProps } from '@react-leaflet/core'; import { ImageOverlay as LeafletImageOverlay } from 'leaflet'; import type { ReactNode } from 'react'; export interface ImageOverlayProps extends MediaOverlayProps { children?: ReactNode; url: string; } export declare const ImageOverlay: import("react").ForwardRefExoticComponent>;