/** * @fileoverview Single-line text input for entering AI questions about the current article; submits on Enter. */ import React from 'react'; interface ArticlePromptInputProps { value: string; onChange: (value: string) => void; onSubmit: () => void; } declare const ArticlePromptInput: React.FC; export default ArticlePromptInput;