import { FC, HTMLAttributes, Ref } from 'react';
export interface TooltipContentProps extends HTMLAttributes {
/**
* Ref forwarded to the tooltip content element.
* Useful for positioning, measuring, or managing focus.
*/
ref?: Ref;
}
/** The TooltipContent component defines the styled body of a tooltip, allowing custom content, font size, and weight, and is positioned relative to a TooltipTrigger to display contextual information. */
export declare const TooltipContent: FC;