export interface IKeybindProps { /** * A key, key combo or array of combos according to Mousetrap documentation. * * @type {(string | string[])} * @memberof IKeybindProps */ hotkey: string | string[]; /** * A function that is triggered on key combo catch. * * @type {Function} * @memberof IKeybindProps */ onInvoke: Function; onRegistered?: Function; onUnRegistered?: Function; } declare const Keybind: (props: IKeybindProps) => any; export default Keybind;