declare class KeyTapAction { #private; constructor(keycode: number); get Alt(): this; get Ctrl(): this; get Meta(): this; get Shift(): this; send(): Promise; } export default KeyTapAction;