import { TooltipRoot } from './components/tooltip.root';
import { TooltipContent } from './components/tooltip.content';
/**
* Tooltip
* ============================================================
* A tooltip component for displaying helpful information on hover or focus.
* Features automatic positioning, accessibility support, and customizable appearance.
*
* @example
* ```tsx
*
*
*
* Helpful information
*
*
* ```
*
* @see https://nimbus-documentation.vercel.app/components/feedback/tooltip
*/
export declare const Tooltip: {
/**
* # Tooltip.Root
*
* The root component that provides state management and positioning logic.
* Wraps the trigger element and tooltip content, handling hover and focus interactions.
*
* @example
* ```tsx
*
*
*
*
* Additional information
*
* ```
*/
Root: typeof TooltipRoot;
/**
* # Tooltip.Content
*
* The tooltip content container that appears on trigger hover or focus.
* Automatically positions itself relative to the trigger element.
*
* @example
* ```tsx
*
* Hover or focus me
*
*
* Tooltip Title
* Detailed description goes here.
*
*
*
* ```
*/
Content: typeof TooltipContent;
};