import { CustomElement } from '../../Abstracts/CustomElement'; import type { IChatMessageReactionElementProps } from './IChatMessageReactionElementProps'; declare const ChatMessageReactionElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Chat Message Reaction - Represents a single reaction to a chat message. * * @example * Basic chat message reaction: * ```html * * ``` * * @example * Disabled reaction: * ```html * * ``` * * @public */ export declare class ChatMessageReactionElement extends ChatMessageReactionElement_base implements IChatMessageReactionElementProps { private _emoji; private _count; /** * @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 `emoji` property. * * @public */ get emoji(): string; set emoji(value: string); /** * Gets or sets the `count` property. * * @public */ get count(): number; set count(value: number); } /** * @public */ export declare namespace ChatMessageReactionElement { type Props = IChatMessageReactionElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-chat-message-reaction': ChatMessageReactionElement; } } export {}; //# sourceMappingURL=ChatMessageReactionElement.d.ts.map