import * as React from 'react'; import type { TooltipProps } from '../../tooltip'; export interface EllipsisTooltipProps { tooltipProps?: TooltipProps; enableEllipsis: boolean; isEllipsis?: boolean; /** When true, show the ellipsis tooltip; when false, hide it. Fully controlled so tooltip re-opens when moving from copy button back to text. */ open: boolean; children: React.ReactElement; } declare const EllipsisTooltip: React.FC; export default EllipsisTooltip;