@useloops/design-system
Version:
The official React based Loops design system
18 lines (15 loc) • 557 B
TypeScript
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 };