import type { FC } from 'react'; export declare type PersonalInfoProps = { name: string; lastName: string; currentCohortNumber: string; city: string; personalEmail: string; phoneNumber: string; documentId: string; address: string; }; /** * @function * @name PersonalInfo * @returns view component that renders the personal 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 PersonalInfo: FC<{ participant: PersonalInfoProps; }>; export { PersonalInfo };