import IOHandle from "../handles/IOHandle.js"; import { GlobalScrollEvent, Hook } from "../../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;