/** * Character key codes which can be used in keyboard events. */ export declare const KEY_UP = "ArrowUp"; export declare const KEY_DOWN = "ArrowDown"; export declare const KEY_LEFT = "ArrowLeft"; export declare const KEY_RIGHT = "ArrowRight"; export declare const KEY_HOME = "Home"; export declare const KEY_END = "End"; export declare const KEY_TAB = "Tab"; export declare const KEY_ENTER = "Enter"; export declare const KEY_SPACE = "Space"; export declare const ESCAPE = "Escape";