terminal-chat-ui
Version:
Shared UI components for terminal-based chat interfaces using Theater actors
10 lines (9 loc) • 467 B
TypeScript
/**
* SmartInput - intelligent input that switches between simple and multiline modes
*/
import type { SmartInputProps } from '../types/ui.js';
/**
* Intelligent input component that automatically switches between simple and multiline modes
* based on content length and user preference
*/
export declare function SmartInput({ mode, onSubmit, placeholder, disabled, autoMultilineThreshold, maxHeight }: SmartInputProps): import("react/jsx-runtime").JSX.Element;