import { default as React } from 'react'; import { StyleConfig } from './Challenges'; interface Props { completed: boolean; title: string; islockedIcon: string; metricCount: string; progressbarPercent: number; progressData: number; color?: string; isLocked?: boolean; styleConfig?: StyleConfig; icon?: any; completedActionIcon?: any; xp: number; showCoin?: boolean; showCredits?: boolean; } declare const ChallengesInnerCard: React.FC; export default ChallengesInnerCard;