import type { FC } from 'react'; export declare type CoSignerInfoProps = { nameCS: string; lastNameCS: string; typeIdCS: string; documentIdCS: string; phoneNumberCS: string; emailCS: string; addressCS: string; dateOfBirthCS: string; }; /** * @function * @name CoSignerInfo * @returns view component that renders the co signer 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 CoSignerInfo: FC<{ participant: CoSignerInfoProps; }>; export { CoSignerInfo };