/** * @name Avatar * @description The Avatar component is used to represent user, and displays the profile picture, initials or fallback icon. * @category Data Display * @tags display * @example */ export declare class Avatar { elm: HTMLElement; /** * Avatar size. */ size: string; name: string; src: string; private getInitials; private getFontSize; render(): any; }