UNPKG

@defikitdotnet/education-module-ai

Version:
11 lines (10 loc) 310 B
import React from "react"; interface AIContentGeneratorProps { apiBaseUrl: string; teacherId: string; contentType?: string; onComplete?: (content: any) => void; onCancel?: () => void; } declare const AIContentGenerator: React.FC<AIContentGeneratorProps>; export default AIContentGenerator;