/** * @fileoverview Renders a clickable list of AI-generated follow-up question suggestions for the open article. */ import React from 'react'; interface ArticleFollowupQuestionsProps { questions: string[]; isLoading: boolean; error: string; onQuestionClick: (question: string) => void; } declare const ArticleFollowupQuestions: React.FC; export default ArticleFollowupQuestions;