import { CSSResultArray, TemplateResult } from 'lit'; import { Focusable } from '../../utils/focusable'; declare const LuzmoAvatar_base: typeof Focusable & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; } & { new (...args: any[]): import("../../utils/like-anchor").LikeAnchorInterface; prototype: import("../../utils/like-anchor").LikeAnchorInterface; }; /** * @element luzmo-avatar */ export declare class LuzmoAvatar extends LuzmoAvatar_base { static get styles(): CSSResultArray; /** * The border style of the avatar image */ border?: 'none' | 'light'; /** * The rounding of the avatar image */ rounding?: 'none' | 'full'; private anchorElement; get focusElement(): HTMLElement; /** * The src of the avatar image. */ src: string; /** * When true, marks the avatar image as decorative (sets alt=""). * Use when the avatar does not convey meaningful information. */ isDecorative: boolean; protected render(): TemplateResult; } export {};