import { type CSSProperties, type ReactNode } from 'react'; type MovingTooltipDirection = -1 | 0 | 1; type MovingTooltipPlacement = 'top' | 'bottom'; type MovingTooltipProps = { open: boolean; children: ReactNode; x: number; y?: number; placement?: MovingTooltipPlacement; id?: string; direction?: MovingTooltipDirection; contentKey?: string | number; className?: string; contentClassName?: string; style?: CSSProperties; }; declare const MovingTooltip: ({ open, children, x, y, placement, id, direction, contentKey, className, contentClassName, style, }: MovingTooltipProps) => import("react/jsx-runtime").JSX.Element; export { MovingTooltip }; export type { MovingTooltipDirection, MovingTooltipPlacement, MovingTooltipProps, };