UNPKG

terminal-chat-ui

Version:

Shared UI components for terminal-based chat interfaces using Theater actors

9 lines (8 loc) 481 B
/** * MultiLineInput - advanced multi-line input with vim-style editing (from theater-chat) */ import type { MultiLineInputProps } from '../types/ui.js'; /** * Advanced multi-line input with vim-style modal editing and cursor management */ export declare function MultiLineInput({ placeholder, onSubmit, maxHeight, mode, onModeChange, content, cursorPosition, onContentChange, onCursorChange, disabled, verbose }: MultiLineInputProps): import("react/jsx-runtime").JSX.Element;