type MouseMoveHandler = (e: MouseEvent) => void; /** * Hook that conditionally attaches a mouse move handler to the document. * Optionally you can throttle it by passing in a non 0 throttledMs value. * * @param handleMouseMove the function to attach to the document * @param isEnabled should the listeners be attached? * @param throttledMs throttle the callback */ declare const useMouseMoveHandler: ({ onMouseMove, isEnabled, throttledMs, }: { onMouseMove: MouseMoveHandler; isEnabled?: boolean; throttledMs?: number; }) => void; export default useMouseMoveHandler; //# sourceMappingURL=useMouseMoveHandler.d.ts.map