@vibe-kit/grok-cli
Version:
An open-source AI agent that brings the power of Grok directly into your terminal.
13 lines (12 loc) • 354 B
TypeScript
import React from "react";
interface ModelOption {
model: string;
}
interface ModelSelectionProps {
models: ModelOption[];
selectedIndex: number;
isVisible: boolean;
currentModel: string;
}
export declare function ModelSelection({ models, selectedIndex, isVisible, currentModel, }: ModelSelectionProps): React.JSX.Element;
export {};