import { FC, PropsWithChildren } from 'react';
import type { TooltipContextData } from './types';
/**
 * @deprecated Use the `data-tooltip-id` attribute, or the `anchorSelect` prop instead.
 * See https://react-tooltip.com/docs/getting-started
 */
export declare const TooltipProvider: FC<PropsWithChildren>;
export declare function useTooltip(tooltipId?: string): TooltipContextData;
