import type { ImageSourcePropType, ViewStyle, TextStyle } from 'react-native'; export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export interface AvatarProps { source?: ImageSourcePropType; name?: string; size?: AvatarSize; rounded?: boolean; backgroundColor?: string; textColor?: string; style?: ViewStyle; textStyle?: TextStyle; }