import React from 'react'; interface Props { profileTemplates: { shortName: string; title: string; repository: string; description: string; }[]; } declare const ProfileCardList: (props: Props) => React.JSX.Element; export default ProfileCardList;