automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
15 lines (14 loc) • 403 B
TypeScript
/**
* Simplified InputPrompt component inspired by gemini-cli
* Focuses on the core text editing functionality
*/
import React from 'react';
interface GeminiInputPromptProps {
onSubmit: (message: string) => void;
disabled?: boolean;
placeholder?: string;
focus?: boolean;
inputWidth?: number;
}
export declare const GeminiInputPrompt: React.FC<GeminiInputPromptProps>;
export {};