import { StyleProp, ViewStyle } from 'react-native'; export interface StatCardProps { label: string; count: number; color: string; isSelected?: boolean; onPress?: () => void; style?: StyleProp; }