/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { LitElement } from "lit"; import { AvatarSize } from "./Avatar.constants"; export declare namespace CompositeAvatar { type Size = (typeof AvatarSize)[number]; class ELEMENT extends LitElement { size: Size; static get styles(): import("lit").CSSResult[]; get avatarClassMap(): { [x: string]: boolean; }; render(): import("lit-html").TemplateResult<1>; } } declare global { interface HTMLElementTagNameMap { "md-composite-avatar": CompositeAvatar.ELEMENT; } }