import { Key } from "./Key"; export declare const KeyCodes: { /** * a */ a: Key; A: Key; KeyA: Key; /** * b */ b: Key; B: Key; KeyB: Key; /** * c */ c: Key; C: Key; KeyC: Key; /** * d */ d: Key; D: Key; KeyD: Key; /** * e */ e: Key; E: Key; KeyE: Key; /** * f */ f: Key; F: Key; KeyF: Key; /** * g */ g: Key; G: Key; KeyG: Key; /** * h */ h: Key; H: Key; KeyH: Key; /** * i */ i: Key; I: Key; KeyI: Key; /** * j */ j: Key; J: Key; KeyJ: Key; /** * k */ k: Key; K: Key; KeyK: Key; /** * l */ l: Key; L: Key; KeyL: Key; /** * m */ m: Key; M: Key; KeyM: Key; /** * n */ n: Key; N: Key; KeyN: Key; /** * o */ o: Key; O: Key; KeyO: Key; /** * p */ p: Key; P: Key; KeyP: Key; /** * q */ q: Key; Q: Key; KeyQ: Key; /** * r */ r: Key; R: Key; KeyR: Key; /** * s */ s: Key; S: Key; KeyS: Key; /** * t */ t: Key; T: Key; KeyT: Key; /** * u */ u: Key; U: Key; KeyU: Key; /** * v */ v: Key; V: Key; KeyV: Key; /** * w */ w: Key; W: Key; KeyW: Key; /** * x */ x: Key; X: Key; KeyX: Key; /** * y */ y: Key; Y: Key; KeyY: Key; /** * z */ z: Key; Z: Key; KeyZ: Key; /** * 1 */ Digit1: Key; /** * 2 */ Digit2: Key; /** * 3 */ Digit3: Key; /** * 4 */ Digit4: Key; /** * 5 */ Digit5: Key; /** * 6 */ Digit6: Key; /** * 7 */ Digit7: Key; /** * 8 */ Digit8: Key; /** * 9 */ Digit9: Key; /** * 0 */ Digit0: Key; /** * Escape ⎋ */ Escape: Key; /** * Tab ⇥ */ Tab: Key; /** * F1 */ F1: Key; /** * F2 */ F2: Key; /** * F3 */ F3: Key; /** * F4 */ F4: Key; /** * F5 */ F5: Key; /** * F6 */ F6: Key; /** * F7 */ F7: Key; /** * F8 */ F8: Key; /** * F9 */ F9: Key; /** * F10 */ F10: Key; /** * F11 */ F11: Key; /** * F12 */ F12: Key; /** * F13 */ F13: Key; /** * F14 */ F14: Key; /** * F15 */ F15: Key; /** * F16 */ F16: Key; /** * Print Screen */ PrintScreen: Key; /** * Scroll Lock */ ScrollLock: Key; /** * Pause / Break */ Pause: Key; Break: Key; /** * NVDA */ Nvda: Key; /** * Home */ Home: Key; /** * Page Up */ PageUp: Key; /** * Page Down */ PageDown: Key; /** * Delete */ ForwardDelete: Key; Delete: Key; /** * End */ End: Key; /** * ← */ ArrowLeft: Key; Left: Key; /** * → */ ArrowRight: Key; Right: Key; /** * ↓ */ ArrowDown: Key; Down: Key; /** * ↑ */ ArrowUp: Key; Up: Key; /** * NumPad 1 */ NumPad1: Key; /** * NumPad 2 */ NumPad2: Key; /** * NumPad 3 */ NumPad3: Key; /** * NumPad 4 */ NumPad4: Key; /** * NumPad 5 */ NumPad5: Key; /** * NumPad 6 */ NumPad6: Key; /** * NumPad 7 */ NumPad7: Key; /** * NumPad 8 */ NumPad8: Key; /** * NumPad 9 */ NumPad9: Key; /** * NumPad 0 */ NumPad0: Key; /** * [ */ "[": Key; LeftSquareBracket: Key; /** * \ */ "\\": Key; Backslash: Key; /** * - */ "-": Key; Dash: Key; Minus: Key; /** * ` */ "`": Key; Backtick: Key; /** * ` */ "=": Key; Equals: Key; /** * ' */ "'": Key; SingleQuote: Key; /** * , */ ",": Key; Comma: Key; /** * . */ ".": Key; Period: Key; FullStop: Key; /** * ] */ "]": Key; RightSquareBracket: Key; /** * NumPad Delete */ NumPadDelete: Key; /** * NumPad Enter */ NumPadEnter: Key; /** * NumPad Plus */ NumPadPlus: Key; /** * NumPad Minus */ NumPadMinus: Key; /** * NumPad Multiply */ NumPadMultiply: Key; /** * NumPad Divide */ NumPadDivide: Key; /** * ⇧ */ Shift: Key; ShiftLeft: Key; /** * ⌃ */ Control: Key; ControlLeft: Key; /** * Windows Key */ Windows: Key; /** * ⌥ */ Alt: Key; AltLeft: Key; /** * ⌥ */ AltRight: Key; /** * " " */ " ": Key; Space: Key; Spacebar: Key; /** * Application Key */ Application: Key; /** * ~ */ Tilde: Key; /** * ! */ Exclamation: Key; /** * ^ */ Caret: Key; /** * + */ Plus: Key; /** * Backspace ← / ⌫ */ Backspace: Key; /** * Caps Lock ⇪ */ CapsLock: Key; /** * Clear */ Clear: Key; /** * Insert */ Insert: Key; /** * Enter ↵ */ Enter: Key; /** * Help */ Help: Key; /** * Numlock */ Numlock: Key; };