import { FC } from 'react'; import { TooltipProps } from './types/Tooltip.props.ts'; /** * Floating tooltip backed by Base UI Tooltip. Wraps a trigger child and * shows `content` in a portal positioner. Shares timing via a * `TooltipProvider` when available; otherwise falls back to a local * provider. Supports `position` shorthand or explicit `side`/`align`. * Set `disabled` to suppress the popup without removing the trigger. */ declare const Tooltip: FC; export default Tooltip;