@defikitdotnet/education-module-ai
Version:
AI Education Module using Agent Framework
11 lines (10 loc) • 310 B
TypeScript
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;