import { LitElement } from 'lit'; /** * User avatar. * @slot unnamed - Slot for the profile picture img. */ export declare class Avatar extends LitElement { static styles: import("lit").CSSResult; /** 1-2 letters to represent the user with the initials in the avatar circle. It also provides a slot that allows an image/photo to replace the initials */ accessor initials: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'kyn-avatar': Avatar; } } //# sourceMappingURL=avatar.d.ts.map