import type { FC } from 'react'; export declare type AcademyInfoProps = { cityFORMS: string; initialCohort: string; currentCohort: string; lastCurriculumStatus: string; AcademicStatus: string; title: string; englishLevelCEFR: string; englishLevelEFSET: string; englishLevelStudentFORMS: string; lastTitle: string; }; /** * @function * @name AcademyInfo * @returns view component that renders the academic information of the * participant. This is part of the ParticipantDetail view. * @author: Manuel Gomez [manolobkno08] (https://github.com/manolobkno08) * @author: Juan Sebastian Perea [Juanse1595] (https://github.com/Juanse1595) * @author: Juan David [manolobkno08] (https://github.com/manolobkno08) */ declare const AcademyInfo: FC<{ participant: AcademyInfoProps; }>; export { AcademyInfo };