import { type PropsWithChildren } from 'react'; import type { TooltipStore } from '../types.js'; export declare const TooltipContext: import("react").Context; /** @internal */ export declare const useTooltip: () => TooltipStore; /** @internal */ export declare function TooltipProvider(props: PropsWithChildren<{ persistedStore?: boolean; }>): import("react/jsx-runtime").JSX.Element;