import React from 'react'; import { IComponentBaseProps } from '../types'; import { AvatarProps } from '../Avatar'; export type ChatBubbleAvatarProps = AvatarProps & IComponentBaseProps; declare const ChatBubbleAvatar: React.ForwardRefExoticComponent, "color"> & IComponentBaseProps & { src?: string | undefined; letters?: string | undefined; size?: number | "lg" | "md" | "sm" | "xs" | undefined; shape?: "circle" | "square" | undefined; color?: "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; border?: boolean | undefined; borderColor?: "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; online?: boolean | undefined; offline?: boolean | undefined; innerClassName?: string | undefined; children?: React.ReactNode; } & React.RefAttributes>; export default ChatBubbleAvatar;