UNPKG

dmux

Version:

Tmux pane manager with AI agent integration for parallel development workflows

10 lines 330 B
import React from 'react'; interface CleanTextInputProps { value: string; onChange: (value: string) => void; onSubmit?: (expandedValue?: string) => void; placeholder?: string; } declare const CleanTextInput: React.FC<CleanTextInputProps>; export default CleanTextInput; //# sourceMappingURL=CleanTextInput.d.ts.map