1 | import { type MediaOverlayProps } from '@react-leaflet/core';
|
2 | import { VideoOverlay as LeafletVideoOverlay, type VideoOverlayOptions } from 'leaflet';
|
3 | import type { ReactNode } from 'react';
|
4 | export interface VideoOverlayProps extends MediaOverlayProps, VideoOverlayOptions {
|
5 | children?: ReactNode;
|
6 | play?: boolean;
|
7 | url: string | string[] | HTMLVideoElement;
|
8 | }
|
9 | export declare const VideoOverlay: import("react").ForwardRefExoticComponent<VideoOverlayProps & import("react").RefAttributes<LeafletVideoOverlay>>;
|