/// import PropTypes from 'prop-types'; /** * @function * @name RenderId * @param {string} intranetUserId: id of the participant. * @returns a button with the id of the participant, if clicked the app * redirects to the participant detail view * @author: Manuel Gomez [manolobkno08] (https://github.com/manolobkno08) */ declare const RenderId: { ({ intranetUserId }: { intranetUserId: number | string; }): JSX.Element; propTypes: { intranetUserId: PropTypes.Requireable; }; }; export { RenderId };