import IOHandle from "../handles/IOHandle.js"; import { GlobalKeyboardEvent, Hook } from "../../types"; declare class KeyPressReleaseHook implements Hook { #private; constructor(variant: "keydown" | "keyup", keycode?: number); get once(): this; get all(): this; get alt(): this; get ctrl(): this; get meta(): this; get shift(): this; do(handler: (e: GlobalKeyboardEvent) => void): IOHandle; } export default KeyPressReleaseHook;