import type { PersonalInfoProps } from '../../composed/profile/PersonalInfo'; import type { AcademyInfoProps } from '../../composed/profile/AcademyInfo'; import type { CoSignerInfoProps } from '../../composed/profile/CoSignerInfo'; import type { EmploymentInfoProps } from '../../composed/profile/EmploymentInfo'; export declare type ParticipantProps = { name?: string; lastName?: string; currentCohortNumber?: string; currentCohortName?: string; } & PersonalInfoProps & AcademyInfoProps & CoSignerInfoProps & EmploymentInfoProps;