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