import { type CSSResultGroup, type PropertyDeclarations } from 'lit'; import { ElementSlug } from '../../definitions/enums.js'; import type { AvatarElementEventMap } from '../../definitions/events.js'; import { AracnaBaseElement as BaseElement } from '../core/base-element.js'; declare global { interface HTMLElementTagNameMap { 'aracna-avatar': AvatarElement; } } declare class AvatarElement extends BaseElement { /** * Properties */ /** */ icon?: string; image?: string; text?: string; get slug(): ElementSlug; static properties: PropertyDeclarations; static styles: CSSResultGroup; } export { AvatarElement as AracnaAvatarElement };