UNPKG

giga-code

Version:

A personal AI CLI assistant powered by Grok for local development.

12 lines (11 loc) 371 B
import React from "react"; import { AgentMode } from "../../types"; interface ChatInputProps { input: string; isProcessing: boolean; isStreaming: boolean; currentModel?: string; currentMode?: AgentMode; } export declare function ChatInput({ input, isProcessing, isStreaming, currentModel, currentMode }: ChatInputProps): React.JSX.Element; export {};