import React from 'react'; import { UserProfile, TrackerType } from '../../types'; interface UserCardProps { profile?: UserProfile; totalPoints: number; trackerType: TrackerType; } export declare const UserCard: React.FC; export {};