interface KeyboardShortcutHandlers { onToolsTab?: () => void; onPromptsTab?: () => void; onResourcesTab?: () => void; onChatTab?: () => void; onHome?: () => void; onFocusSearch?: () => void; onBlurSearch?: () => void; onCommandPalette?: () => void; onNewChat?: () => void; } /** * Centralized keyboard shortcuts hook for the Inspector app * * Shortcuts: * - Cmd/Ctrl + K: Open command palette * - Cmd/Ctrl + O: Start a new chat * - t: Switch to tools tab (when no input focused) * - p: Switch to prompts tab (when no input focused) * - r: Switch to resources tab (when no input focused) * - c: Switch to chat tab (when no input focused) * - h: Go to home (when no input focused) * - f: Focus search bar on tools/prompts/resources tabs (when no input focused) * - Escape: Close command palette / blur focused element */ export declare function useKeyboardShortcuts(handlers: KeyboardShortcutHandlers): void; export {}; //# sourceMappingURL=useKeyboardShortcuts.d.ts.map