export default class Hotkey {
shortcut: string;
callback: (event: KeyboardEvent) => boolean;
altKey: boolean;
ctrlKey: boolean;
metaKey: boolean;
shiftKey: boolean;
key: string;
private aliases;
constructor(shortcut: string, callback: (event: KeyboardEvent) => boolean);
}