/** * These keys are used for navigating combobox UI components. * * UP: Select the previous item in the list. * DOWN: Select the next item in the list. * ENTER / TAB: Complete input with the current selection. * ESC: Deselect the current selection and hide the list. */ export declare const comboBoxKeyCodes: { DOWN: number; ENTER: number; ESCAPE: number; TAB: number; UP: number; };