import type { Point } from '../types/point.js'; /** * @internal * Hook that handles the mouse position * @param shouldUpdatePosition - boolean that determines whether the mouse position needs to be updated or not. * @returns mouse position */ export declare const useMousePosition: (shouldUpdatePosition: boolean) => Point;