/** * Keyboard-shortcuts overlay mixin — show/hide/toggle the `?`-keybinds dialog. * * Owns: toggleShortcuts, showShortcuts, hideShortcuts. * * The overlay DOM node (`shortcutsOverlay`) and visibility flag * (`_shortcutsVisible`) live on the plugin class. */ import type { DesktopUiInternals } from '../internals.js'; export declare const shortcutsMethods: { readonly toggleShortcuts: (this: DesktopUiInternals) => void; readonly showShortcuts: (this: DesktopUiInternals) => void; readonly hideShortcuts: (this: DesktopUiInternals) => void; };