export interface HotkeyDescription { id: string; name: string; } export interface Hotkey { strokes: string[] | string; isDuplicate: boolean; } /** * Extend to provide your own hotkeys. A corresponding [[ConfigProvider]] * must also provide the `hotkeys.foo` config options with the default values */ export declare abstract class HotkeyProvider { abstract provide(): Promise; }