/** * CommandPalette - Raycast/Linear-style command palette * Triggered by Cmd+K for quick action discovery and execution */ interface CommandPaletteProps { /** Callback to toggle AI Chat (since it's local state in App) */ onToggleAIChat?: () => void; } export declare function CommandPalette({ onToggleAIChat }: CommandPaletteProps): import("react/jsx-runtime").JSX.Element | null; export {};