import { LitElement } from 'lit'; import "../icon/icon"; export default class SlAvatar extends LitElement { static styles: import("lit").CSSResult; private hasError; image?: string; label: string; initials?: string; shape: 'circle' | 'square' | 'rounded'; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'sl-avatar': SlAvatar; } }