/** @jsxImportSource preact */ import type { KeyboardShortcut } from "../keyboard-shortcuts/keyboard-shortcuts.js"; import type { WidgetPanel, WidgetPanelTheme } from "./widget-containers.js"; import type { JSX } from 'preact'; export type KeyboardShortcutsPanelProps = { /** Optional list of keyboard shortcuts to render in the panel. */ keyboardShortcuts?: KeyboardShortcut[]; /** Optional theme override applied to this panel subtree. */ theme?: WidgetPanelTheme; }; /** * A panel definition representing keyboard shortcut details for a modal/tab container. */ export declare class KeyboardShortcutsPanel implements WidgetPanel { id: string; title: string; theme?: WidgetPanelTheme; content: JSX.Element; constructor({ keyboardShortcuts, theme }?: KeyboardShortcutsPanelProps); } //# sourceMappingURL=keyboard-shortcuts-widget.d.ts.map