import { ReactNode } from "react"; type TooltipProps = { children: ReactNode; text: string; placement: "left" | "right" | "top" | "bottom"; position?: "absolute" | "fixed"; className?: string; touchScreenHidingDelay?: number; showTooltip: boolean; }; declare function Tooltip({ children, text, placement, position, showTooltip, className, touchScreenHidingDelay, }: TooltipProps): JSX.Element; export default Tooltip;