///
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 DocumentId: {
({ typeId, documentId, }: {
typeId: number | string;
documentId: number | string;
}): JSX.Element;
propTypes: {
typeId: PropTypes.Requireable;
documentId: PropTypes.Requireable;
};
};
export { DocumentId };