export interface ShortcutStoreLike { entries: { enabled?: boolean; keys: string; when?: () => boolean; handler: (event: KeyboardEvent) => void; }[]; } export declare function bindShortcuts( shortcutStore: ShortcutStoreLike, ): () => void; export declare function shortcutListener( _node: HTMLElement, shortcutStore: ShortcutStoreLike, ): { destroy(): void; };