import React from 'react'; import { BubbleProps } from './interface'; interface AvatarProps extends Pick { isAssistant?: boolean; className?: string; style?: React.CSSProperties; } declare const Avatar: React.FC; export default Avatar;