import IOHandle from "../handles/IOHandle.js"; import { GlobalMouseEvent, Hook } from "../../types"; declare class MouseMoveHook implements Hook { #private; constructor(); get once(): this; get all(): this; get alt(): this; get ctrl(): this; get meta(): this; get shift(): this; do(handler: (e: GlobalMouseEvent) => void): IOHandle; } export default MouseMoveHook;