/** * Input box component - handles user text input */ import React from 'react'; export interface InputBoxProps { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void | Promise; isLoading?: boolean; placeholder?: string; moveCursorToEnd?: boolean; } export declare function InputBox({ value, onChange, onSubmit, isLoading, placeholder, moveCursorToEnd, }: InputBoxProps): React.JSX.Element; //# sourceMappingURL=InputBox.d.ts.map