import type { ViewProps } from 'react-native'; export type CardTone = 'default' | 'muted' | 'primary' | 'success' | 'danger' | 'warning'; export interface CardProps extends ViewProps { tone?: CardTone; className?: string; }