import { createContext } from "react"; export type TooltipPositionContextType = | "top" | "bottom" | "left" | "right" | undefined; export const TooltipPositionContext = createContext(undefined);