import React from "react";
export type CourseLevel = "beginner" | "intermediate" | "advanced";
declare const StudentPortalPage: React.FC;
export default StudentPortalPage;
