import { default as React } from 'react'; import { ICriteria, StyleConfig } from './Challenges'; interface Props { suggestions: ICriteria[]; setSearchTerm: React.Dispatch>; styleConfig?: StyleConfig; mainHeading?: string; subHeading?: string; showFooter?: boolean; completedActionIcon?: any; showCoin?: boolean; campaignXp?: number; showCredits?: boolean; } declare const ChallengesShow: React.FC; export default ChallengesShow;