import React from 'react'; import { ShortKey, Callback } from './ShortcutsProvider'; export interface KeyPressProps { shortKey: ShortKey; keyDownCallback: Callback; keyUpCallback: Callback; } export interface KeyPressState { } export declare const KeyPress: React.FunctionComponent;