import { FunctionComponent, ReactElement } from 'react';
import { AiContentContainerProps } from '../AiContentContainer/AiContentContainer.js';

interface AIInsightProps {
    themeDescription: string;
    comments: ReactElement[];
    slotProps?: {
        aiContentContainer: AiContentContainerProps;
    };
    suggestions?: string[];
    activeCommentIndex?: number;
    onActiveCommentIndexChange?: (index: number) => void;
}
declare const AIInsight: FunctionComponent<AIInsightProps>;

export { AIInsight as default };
export type { AIInsightProps };
