UNPKG

435 BTypeScriptView Raw
1import { EventedProps } from '@react-leaflet/core';
2import { LatLngExpression, Marker as LeafletMarker, MarkerOptions } from 'leaflet';
3import { ReactNode } from 'react';
4export interface MarkerProps extends MarkerOptions, EventedProps {
5 children?: ReactNode;
6 position: LatLngExpression;
7}
8export declare const Marker: import("react").ForwardRefExoticComponent<MarkerProps & import("react").RefAttributes<LeafletMarker<any>>>;