import React from 'react'; import { StyleProp, ImageStyle, TextStyle } from 'react-native'; import { User } from './Models'; export interface ChatAvatarProps { user?: User; avatarStyle?: StyleProp; textStyle?: StyleProp; onPress?: (props: ChatAvatarProps) => void; onLongPress?: (props: ChatAvatarProps) => void; } export declare function ChatAvatar(props: ChatAvatarProps): React.JSX.Element; //# sourceMappingURL=ChatAvatar.d.ts.map