automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
12 lines (11 loc) • 318 B
TypeScript
import React from 'react';
interface EnhancedInputPromptProps {
onSubmit: (message: string) => void;
inputWidth: number;
disabled?: boolean;
placeholder?: string;
multiline?: boolean;
maxLines?: number;
}
export declare const EnhancedInputPrompt: React.FC<EnhancedInputPromptProps>;
export {};