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. * * @csspart avatar - The avatar part. * * @cssprop {String} --chat-message-avatar-background-color - The message avatar background color CSS custom property. * @cssprop {String} --chat-message-avatar-badge-gap - The message avatar badge gap CSS custom property. * @cssprop {String} --chat-message-avatar-badge-horizontal-align - The message avatar badge horizontal align CSS custom property. * @cssprop {String} --chat-message-avatar-badge-radius - The message avatar badge radius CSS custom property. * @cssprop {String} --chat-message-avatar-badge-vertical-align - The message avatar badge vertical align CSS custom property. * @cssprop {String} --chat-message-avatar-border-color - The message avatar border color CSS custom property. * @cssprop {String} --chat-message-avatar-border-radius - The message avatar border radius CSS custom property. * @cssprop {String} --chat-message-avatar-border-style - The message avatar border style CSS custom property. * @cssprop {String} --chat-message-avatar-border-width - The message avatar border width CSS custom property. * @cssprop {String} --chat-message-avatar-diameter - The message avatar diameter CSS custom property. * @cssprop {String} --chat-message-avatar-font-family - The message avatar font family CSS custom property. * @cssprop {String} --chat-message-avatar-font-letter-spacing - The message avatar font letter spacing CSS custom property. * @cssprop {String} --chat-message-avatar-font-line-height - The message avatar font line height CSS custom property. * @cssprop {String} --chat-message-avatar-font-size - The message avatar font size CSS custom property. * @cssprop {String} --chat-message-avatar-font-text-decoration - The message avatar font text decoration CSS custom property. * @cssprop {String} --chat-message-avatar-font-text-transform - The message avatar font text transform CSS custom property. * @cssprop {String} --chat-message-avatar-font-weight - The message avatar font weight CSS custom property. * @cssprop {String} --chat-message-avatar-foreground-color - The message avatar foreground color CSS custom property. * @cssprop {String} --chat-message-avatar-gap - The message avatar gap CSS custom property. * @cssprop {String} --chat-message-avatar-offset - The message avatar offset CSS custom property. * @cssprop {String} --chat-message-avatar-padding-bottom - The message avatar padding bottom CSS custom property. * @cssprop {String} --chat-message-avatar-padding-left - The message avatar padding left CSS custom property. * @cssprop {String} --chat-message-avatar-padding-right - The message avatar padding right CSS custom property. * @cssprop {String} --chat-message-avatar-padding-top - The message avatar padding top CSS custom property. * @cssprop {String} --chat-message-avatar-shadow - The message avatar shadow CSS custom property. * @cssprop {String} --chat-message-avatar-shadow-blur - The message avatar shadow blur CSS custom property. * @cssprop {String} --chat-message-avatar-shadow-color - The message avatar shadow color CSS custom property. * @cssprop {String} --chat-message-avatar-shadow-offset-x - The message avatar shadow offset x CSS custom property. * @cssprop {String} --chat-message-avatar-shadow-offset-y - The message avatar shadow offset y CSS custom property. * @cssprop {String} --chat-message-avatar-shadow-spread - The message avatar shadow spread CSS custom property. * @cssprop {String} --chat-message-avatar-transition-duration - The message avatar transition duration CSS custom property. * @cssprop {String} --chat-message-avatar-transition-mode - The message avatar transition mode CSS custom property. * @cssprop {String} --chat-message-avatar-transition-property - The message avatar transition property CSS custom property. * @cssprop {String} --chat-message-avatar-translate - The message avatar translate CSS custom property. * * @dependency mosaik-avatar - The Avatar element. * * @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