import { CourseRaw } from '../../../store/useCourseStore'; import { UserData } from '@mui-toolpad-extended-tuni/main'; interface StaffTabProps { formData: CourseRaw; setFormData: (data: CourseRaw) => void; courseUsers?: UserData[]; } /** * StaffTab Component * * @version 3.0.0 * @breaking-changes * - Updated course store import path to feature-based structure * - Enhanced TypeScript type definitions for staff roles * - Improved staff removal confirmation handling * - Updated styling for better accessibility * - Added proper aria labels for actions * * Provides interface for: * - Managing course staff members * - Adding/removing teaching staff * - Viewing staff permissions * - Managing staff roles */ export default function StaffTab({ formData, setFormData }: StaffTabProps): import("react/jsx-runtime").JSX.Element; export {};