import { StyleProp, ViewStyle } from 'react-native'; /** 发送者类型 */ export type SenderType = 'user' | 'ai' | 'customer-service' | 'system'; /** 头像组件 Props */ export interface DbChatAvatarProps { /** 头像 URL */ source?: string; /** 发送者类型(影响默认头像样式) */ senderType: SenderType; /** 尺寸 */ size?: number; /** 自定义样式 */ style?: StyleProp; /** 点击回调 */ onPress?: () => void; }