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