UNPKG

@vibe-kit/grok-cli

Version:

An open-source AI agent that brings the power of Grok directly into your terminal.

10 lines (9 loc) 292 B
import React from "react"; interface ChatInputProps { input: string; cursorPosition: number; isProcessing: boolean; isStreaming: boolean; } export declare function ChatInput({ input, cursorPosition, isProcessing, isStreaming, }: ChatInputProps): React.JSX.Element; export {};