import { Dispatch, SetStateAction } from "react"; export interface HoveredValueContextValue { hoveredValue: any | undefined; setHoveredValue?: Dispatch>; } declare const HoveredValueContext: import("react").Context; export default HoveredValueContext;