UNPKG

@defikitdotnet/education-module-ai

Version:
12 lines (11 loc) 360 B
import React from "react"; interface CategoryManagerProps { onCategoriesChange?: (categoryIds: string[]) => void; selectedCategories?: string[]; mode?: "select" | "manage"; teacherId: string; apiBaseUrl: string; disabled?: boolean; } export declare const CategoryManager: React.FC<CategoryManagerProps>; export default CategoryManager;