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