export interface TooltipProps { tip: string; placement?: "top" | "bottom" | "left" | "right" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom"; children?: React.ReactNode; isVisible?: boolean; x?: number; y?: number; isAbsolutePositioned?: boolean; hasPointerEvents?: boolean; } declare const Tooltip: ({ tip, children, isVisible, x, y, isAbsolutePositioned, hasPointerEvents, }: TooltipProps) => import("react/jsx-runtime").JSX.Element; export default Tooltip;