import * as React from 'react'; interface TooltipProps { /** * The content to display in the tooltip */ content: string; /** * The trigger element that shows the tooltip on hover */ children: React.ReactNode; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; } /** * Tooltip component - Arbor Design System * * A tooltip that appears on hover over a trigger element. */ declare const Tooltip: React.ForwardRefExoticComponent>; export { Tooltip, type TooltipProps };