/** * @fileoverview Displays the AI-generated response to a user's prompt about the current article, with loading spinner and error state. */ import React from 'react'; interface ArticleAIResponseProps { response: string; isLoading: boolean; error: string; } declare const ArticleAIResponse: React.FC; export default ArticleAIResponse;