/** * @jsxRuntime classic * @jsx jsx */ import { type CSSProperties, type ReactNode } from 'react'; import { type PositionType } from './types'; export interface TooltipPrimitiveProps { truncate?: boolean; style?: CSSProperties; className?: string; children: ReactNode; testId?: string; placement: PositionType; ref?: React.Ref; onMouseOver?: (e: React.MouseEvent) => void; onMouseOut?: (e: React.MouseEvent) => void; id?: string; shortcut?: string[]; } /** * The lower level component for rendering a tooltip. */ declare const TooltipPrimitive: React.ForwardRefExoticComponent & React.RefAttributes>; export default TooltipPrimitive;