import { CourseRaw } from '../../../store/useCourseStore'; interface RelationshipsTabProps { formData: CourseRaw; setFormData: (data: CourseRaw) => void; } /** * RelationshipsTab Component * * @version 3.0.0 * @breaking-changes * - Updated course store import path to feature-based structure * - Enhanced type definitions for course relationships * - Standardized string literals for relationship types * - Improved relationship type descriptions * - Added better type safety for relationship management * * Provides interface for: * - Managing course prerequisites * - Setting up course continuations * - Defining alternative courses * - Managing course dependencies * - Creating course relationship networks */ export default function RelationshipsTab({ formData, setFormData, }: RelationshipsTabProps): import("react/jsx-runtime").JSX.Element; export {};