UNPKG

automagik-cli

Version:

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

10 lines (9 loc) 246 B
import React from 'react'; interface InputPromptProps { onSubmit: (message: string) => void; inputWidth: number; disabled?: boolean; placeholder?: string; } export declare const InputPrompt: React.FC<InputPromptProps>; export {};