declare type Action = "down" | "up"; declare class KeyPressReleaseAction { #private; constructor(action: Action, keycode: number); get Alt(): this; get Ctrl(): this; get Meta(): this; get Shift(): this; send(): Promise; } export default KeyPressReleaseAction;