Variable AiTextInputConst
AiTextInput: React.FC<
{
ariaLabel: string;
disabled?: boolean;
errorMessage?: string;
invalid?: boolean;
monospace?: boolean;
onCommit: (value: string) => void;
password?: boolean;
placeholder?: string;
value: string;
},
> = ...
Single-line text input committing on blur or Enter (so typing does not write a preference per keystroke).