export type TooltipBoundaries = "viewport" | "document"; export type TooltipPlacements = "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end"; export type TriggerOption = "click" | "mouseover" | "mouseenter" | "mouseout" | "mouseleave" | "blur" | "focus" | "focusin" | "focusout";