import React from "react";
interface AICourseGeneratorProps {
    apiBaseUrl: string;
    teacherId: string;
    onComplete?: (course: any) => void;
    onCancel?: () => void;
}
export declare const AICourseGenerator: React.FC<AICourseGeneratorProps>;
export default AICourseGenerator;
