import { type PropsWithChildren } from 'react'; import type { AnnotationsTooltipConfig } from '../components/tooltip/types/annotations-tooltip-props.js'; import type { AnnotationsActionsHandler, AnnotationsMarkerInteractionsHandler } from '../types/annotations.js'; interface AnnotationsProvidersProps extends PropsWithChildren { onAnnotationsMarkersInteraction: AnnotationsMarkerInteractionsHandler; annotationsActions?: AnnotationsActionsHandler; tooltipConfig?: AnnotationsTooltipConfig; } export declare const AnnotationsProviders: { ({ children, onAnnotationsMarkersInteraction, annotationsActions, tooltipConfig, }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export {};