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;
