type KeyAction = { name: KeyActionName; activatesFocusIndicator: boolean; }; type KeyActionName = 'arrowdown' | 'arrowleft' | 'arrowright' | 'arrowup' | 'home' | 'end' | 'delete' | 'undo' | 'redo' | 'submit' | 'zoomin' | 'zoomout' | 'panxleft' | 'panxright'; export declare function mapKeyboardEventToAction(event: KeyboardEvent): KeyAction | undefined; export {};