import type { ReactNode } from 'react'; import type { IconName } from '../../atoms/Icon'; export interface EntityCardProps { title: string; subtitle?: string; description?: string; icon?: IconName; rightSlot?: ReactNode; badge?: ReactNode; onPress?: () => void; onLongPress?: () => void; disabled?: boolean; selected?: boolean; className?: string; testID?: string; }