import * as React from 'react'; export interface IHotkeyProps { hotkey: string; groupName?: string; description?: string; onInvoke: Function; } export declare const Hotkey: (props: IHotkeyProps) => React.JSX.Element; export interface IKeybindingProps { } export default class Keybinding extends React.Component { state: {}; static Hotkey: (props: IHotkeyProps) => React.JSX.Element; private handleRegistered; private handleUnregistered; render(): React.JSX.Element; }