1 | import { type EventedProps } from '@react-leaflet/core';
|
2 | import { type LatLngExpression, Tooltip as LeafletTooltip, type TooltipOptions } from 'leaflet';
|
3 | import { type ReactNode } from 'react';
|
4 | export interface TooltipProps extends TooltipOptions, EventedProps {
|
5 | children?: ReactNode;
|
6 | position?: LatLngExpression;
|
7 | }
|
8 | export declare const Tooltip: import("react").ForwardRefExoticComponent<TooltipProps & import("react").RefAttributes<LeafletTooltip>>;
|