import { CustomElement } from '../../Abstracts/CustomElement'; import type { IChatMessageDividerElementProps } from './IChatMessageDividerElementProps'; declare const ChatMessageDividerElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Stickable").IStickableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Chat Message Divider - Represents a visual divider between chat messages. * * @example * Basic chat message divider: * ```html * * ``` * * @public */ export declare class ChatMessageDividerElement extends ChatMessageDividerElement_base implements IChatMessageDividerElementProps { private _text; private _thickness; /** * @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 `thickness` property. * * @public */ get thickness(): number; set thickness(value: number); } /** * @public */ export declare namespace ChatMessageDividerElement { type Props = IChatMessageDividerElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-chat-message-divider': ChatMessageDividerElement; } } export {}; //# sourceMappingURL=ChatMessageDividerElement.d.ts.map