UNPKG

automagik-cli

Version:

Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems

11 lines (10 loc) 297 B
import React from 'react'; import { HistoryItem } from '../types.js'; interface ChatDisplayProps { history: HistoryItem[]; pendingMessage: HistoryItem | null; terminalWidth: number; terminalHeight: number; } export declare const ChatDisplay: React.FC<ChatDisplayProps>; export {};