import { type ForwardedRef, type RefObject, type Context } from 'react'; import type { Point } from '../types/point.js'; export type OverlaysContextProps = { mousePosition?: Point; eventLocalPoint?: Point; chartBounds?: DOMRect; isInChartBounds: boolean; tooltipContainerRef?: ForwardedRef; overlayRef?: RefObject; }; export declare const OverlaysContext: Context;