import { LitElement } from "lit"; import type { StoryMeta } from "../../story-meta.js"; export declare const AVATAR_SIZES: readonly ["s", "m", "l"]; export type AvatarSize = (typeof AVATAR_SIZES)[number]; export declare class EdsAvatar extends LitElement { static readonly storyMeta: StoryMeta; static styles: import("lit").CSSResult; initials: string; src: string; alt: string; size: AvatarSize; status: "online" | "busy" | "offline" | "none"; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "eds-avatar": EdsAvatar; } } //# sourceMappingURL=avatar.d.ts.map