import React from 'react'; interface Props { shortName: string; title: string; repository: string; description: string; index: number; onClick: (i: number, repository: string) => void; selections: Set; } declare const ProfileCard: (props: Props) => React.JSX.Element; export default ProfileCard;