export declare class ShortcutManager {
  /**
   * Initializes keyboard shortcuts.
   */
  static init(): void;
  /**
   * Handles keydown events for shortcuts.
   * @param event - The keyboard event.
   */
  private static handleKeydown;
}
