import { default as React } from 'react'; export type InsightsSectionAiCfoProps = { suggestedQuestions: string[]; /** While suggested questions are loading from the API, two skeleton placeholders render (no ask-something-else row). */ isSuggestedQuestionsLoading?: boolean; onAskSomethingElseClick: () => void; onSuggestedQuestionClick: (question: string, suggestionIndex: number) => void; }; declare const InsightsSectionAiCfoQuestions: React.FC; export default InsightsSectionAiCfoQuestions;