import { LitElement } from 'lit'; export type NJC_AVATAR_SIZE = 'xxx-small' | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large'; export declare class NjcAvatar extends LitElement { /** * @property {string} size - Predefined size of the avatar * @type {NJC_AVATAR_SIZE} */ size: NJC_AVATAR_SIZE; /** * @property {string} src - URL of the image to display * @type {string} */ src: string; /** * @property {string} avatarAriaLabel - Aria-label for the avatar * @type {string} */ avatarAriaLabel: string; /** * @property {boolean} interactive - If true, the avatar will be interactive * @type {boolean} */ interactive: boolean; /** * @property {boolean} skeleton - If true, the avatar will display a skeleton loader * @type {boolean} */ skeleton: boolean; }