import { default as styles } from './Avatar.module.css'; import { ImageProps } from '../Image/Image'; export { styles as AvatarClasses }; export interface AvatarProps extends ImageProps { /** One or two letters to be shown as a placeholder. `fallbackIcon` will not be used if `acronym` is provided. */ acronym?: string; } /** * Renders an image with specific styles for an avatar presentation, including optional acronym display and badge support. * Utilizes the `Image` component for core functionality, enhancing it with avatar-specific features like acronyms and badges. */ export declare const Avatar: { ({ className, style, acronym, fallbackIcon, size, ...restProps }: AvatarProps): JSX.Element; Badge: any; };