import { ComponentPropsWithoutRef } from 'react'; /** * Props for the TooltipContent component * @extends Omit, "popover"> */ export type TooltipContentProps = Omit, "popover">; /** * TooltipContent component that displays the tooltip content. * * Features: * - Displays the tooltip content with proper positioning * - Includes an arrow pointing to the trigger element * - Supports keyboard navigation and escape key to close * - Handles mouse interactions for hover behavior * - Accessible with proper ARIA roles * - Supports all standard div element props * - Automatic focus management for keyboard navigation * - Real-time position updates * - Handles both string and complex content * * @example * * This tooltip provides helpful context * */ export declare const TooltipContent: import('react').ForwardRefExoticComponent>;