import { type Suggestion } from './autocomplete.js'; interface CommandPaletteProps { commands: Suggestion[]; skills: Suggestion[]; /** Run the selected command/skill by name (no leading slash). */ onRun: (name: string) => void; onClose: () => void; } /** * Ctrl+P command palette: type to fuzzy-filter commands + skills, ↑/↓ to * navigate, Enter to run, Esc to close. Owns its input (the prompt is hidden * while the palette is open). */ export declare function CommandPalette({ commands, skills, onRun, onClose }: CommandPaletteProps): import("react").JSX.Element; export {};