import { CustomElement } from '../../Abstracts/CustomElement'; import type { IChatMarkerElementProps } from './IChatMarkerElementProps'; declare const ChatMarkerElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Orientable").IOrientableProps) & (abstract new (...args: Array) => import("../../../Behaviors/ContentAlignable").IContentAlignableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Stickable").IStickableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Chat Marker - Represents a marker within a chat message. * * @example * Basic chat marker: * ```html * * ``` * * @example * Chat marker with a variant: * ```html * * ``` * * @public */ export declare class ChatMarkerElement extends ChatMarkerElement_base implements IChatMarkerElementProps { private _text; private _icon; /** * @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); } /** * @public */ export declare namespace ChatMarkerElement { type Props = IChatMarkerElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-chat-marker': ChatMarkerElement; } } export {}; //# sourceMappingURL=ChatMarkerElement.d.ts.map