dmux
Version:
Tmux pane manager with AI agent integration for parallel development workflows
13 lines • 415 B
TypeScript
import React from 'react';
interface SimpleEnhancedInputProps {
value: string;
onChange: (value: string) => void;
placeholder?: string;
onSubmit?: () => void;
onCancel?: () => void;
isActive?: boolean;
workingDirectory?: string;
}
declare const SimpleEnhancedInput: React.FC<SimpleEnhancedInputProps>;
export default SimpleEnhancedInput;
//# sourceMappingURL=SimpleEnhancedInput.d.ts.map