import { AvatarShape, AvatarSize, AvatarStatus } from './types'; export declare class BcmAvatar { /** Source URL for avatar image */ image: string; /** Alternative text for image */ alt: string; /** Shape of the avatar (ellipse/square) */ shape: AvatarShape; /** Size of the avatar */ size: AvatarSize; /** Custom background color */ color: string; /** Fallback icon class */ icon: string; /** Status indicator type */ status: AvatarStatus; /** Status indicator animation */ blink: boolean; /** Display name (used for initials) */ name: string; isFallback: boolean; private getFirstLetters; render(): any; }