import { NavigationPageStoreItem } from '@mui-toolpad-extended-tuni/main'; interface CourseToolsProps { microservices?: NavigationPageStoreItem[]; } /** * Component for managing and displaying course-specific tools. * * @version 2.1.0 * @updates * - Added support for microservice-based tool management * - Introduced enabled/available tools separation * - Added service enablement/disablement functionality * - Enhanced teacher-specific tool configuration * - Improved UI with centered headings and tool groups * * @component * @param {CourseToolsProps} props * @param {NavigationPageStoreItem[]} props.microservices - Array of available microservice tools */ declare const CourseTools: ({ microservices }: CourseToolsProps) => import("react/jsx-runtime").JSX.Element; export default CourseTools;