import { CustomElement } from '../../Abstracts/CustomElement'; import type { ITextFormatElementProps } from './ITextFormatElementProps'; declare const TextFormatElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Text Format - A user interface component for formatting and styling text content. * * @description * The Text Format component allows users to apply various formatting and styling options to text content. * It provides functionality for changing text color, font size, font weight, alignment, and other styling aspects. * This component is commonly used in rich text editors, document editing applications, or any scenario where text * formatting is required. * * @element mosaik-text-format * @category Display * * @slot - The default slot. * * @example * ```html * * * * ``` * * @public */ export declare class TextFormatElement extends TextFormatElement_base implements ITextFormatElementProps { private _text; /** * @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 * @attr */ get text(): string; set text(value: string); } /** * @public */ export declare namespace TextFormatElement { type Props = ITextFormatElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-text-format': TextFormatElement; } } export {}; //# sourceMappingURL=TextFormatElement.d.ts.map