UNPKG

dmux

Version:

Tmux pane manager with AI agent integration for parallel development workflows

13 lines 406 B
import React from 'react'; interface EnhancedTextInputProps { value: string; onChange: (value: string) => void; placeholder?: string; onSubmit?: () => void; onCancel?: () => void; multiline?: boolean; workingDirectory?: string; } declare const EnhancedTextInput: React.FC<EnhancedTextInputProps>; export default EnhancedTextInput; //# sourceMappingURL=EnhancedTextInput.d.ts.map