import type CommandMenu from './CommandMenu.js'; interface KeyboardActions { trigger: () => void; goBack: () => void; start: () => void; end: () => void; next: () => void; previous: () => void; toggleOpen: () => void; } export declare class KeyboardController { private host; private globalShortcuts; private navigationShortcuts; private commandShortcuts; constructor(host: CommandMenu, actions: KeyboardActions); registerCommandShortcuts(): void; } export {};