import type { FC } from 'react'; export declare type EmploymentInfoProps = { salary?: string; salary_currency?: string; collection_agency?: string; paymentStatus?: string; paymentCreatedAt?: string; paymentValue_lastCollectionTrans?: string; paymentId_lastCollectionTrans?: string; employment?: string; company_name?: string; }; /** * @function * @name EmploymentInfo * @returns view component that renders the current job 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 EmploymentInfo: FC<{ participant: EmploymentInfoProps; }>; export { EmploymentInfo };