You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
459 B
8 lines
459 B
import { type EventedProps } from '@react-leaflet/core'; |
|
import { type LatLngExpression, Tooltip as LeafletTooltip, type TooltipOptions } from 'leaflet'; |
|
import { type ReactNode } from 'react'; |
|
export interface TooltipProps extends TooltipOptions, EventedProps { |
|
children?: ReactNode; |
|
position?: LatLngExpression; |
|
} |
|
export declare const Tooltip: import("react").ForwardRefExoticComponent<TooltipProps & import("react").RefAttributes<LeafletTooltip>>;
|
|
|