import React, { type ElementType } from 'react'; import type { TooltipContentProps } from './types'; /** * The content that displays in the tooltip popup */ export declare const TooltipContent: { ({ children, className, style, as, side, align, container, onEscapeKeyDown, onKeyDown, ref, ...props }: TooltipContentProps): React.ReactPortal | null; displayName: string; };