import { ButtonHTMLAttributes, FC, Ref } from 'react'; export interface TooltipTriggerProps extends ButtonHTMLAttributes { /** * If true, renders the trigger as a slotted child element using `asChild`. * Enables integration with custom elements (e.g., ,
, icon buttons) that serve as tooltip triggers. */ asChild?: boolean; /** * Ref forwarded to the underlying button or slotted element. * Useful for focus control, programmatic access, or accessibility enhancements. */ ref?: Ref; } /** The TooltipTrigger component is the interactive element—typically a button, icon, or text span—that activates a Tooltip, supporting flexible rendering via the asChild prop for custom composition and accessibility */ export declare const TooltipTrigger: FC;