import { CustomElement } from '../../Abstracts/CustomElement'; import type { IChatMessageAvatarElementProps } from './IChatMessageAvatarElementProps'; declare const ChatMessageAvatarElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Chat Message Avatar - Represents the avatar of a chat message. * * @example * Basic chat message avatar: * ```html * * ``` * * @example * Chat message avatar with a variant: * ```html * * ``` * * @public */ export declare class ChatMessageAvatarElement extends ChatMessageAvatarElement_base implements IChatMessageAvatarElementProps { private _text; private _icon; private _src; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public */ get text(): string; set text(value: string); /** * Gets or sets the `icon` property. * * @public */ get icon(): string; set icon(value: string); /** * Gets or sets the `src` property. * * @public */ get src(): string; set src(value: string); } /** * @public */ export declare namespace ChatMessageAvatarElement { type Props = IChatMessageAvatarElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-chat-message-avatar': ChatMessageAvatarElement; } } export {}; //# sourceMappingURL=ChatMessageAvatarElement.d.ts.map