import IOHandle from "../handles/IOHandle.js"; import { GlobalScrollEvent, Hook } from "../../common/types"; declare class MouseScrollHook implements Hook { #private; constructor(); get once(): this; get all(): this; get up(): this; get down(): this; get left(): this; get right(): this; get vertical(): this; get horizontal(): this; get Alt(): this; get Ctrl(): this; get Meta(): this; get Shift(): this; do(handler: (e: GlobalScrollEvent) => void): IOHandle; } export default MouseScrollHook;