2025-08-13 18:05:26 +02:00

9 lines
423 B
TypeScript

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<ImageOverlayProps & import("react").RefAttributes<LeafletImageOverlay>>;