import React from 'react'; interface InputBarProps { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; agentId: string; threadId: string; model: string; cwd: string; availableCommands?: { command: string; description?: string; }[]; historyEntries?: string[]; } export default function InputBar({ value, onChange, onSubmit, agentId, threadId, model, cwd, availableCommands, historyEntries, }: InputBarProps): React.ReactNode; export {};