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. * * @cssprop {String} --text-format-font-family - The format font family CSS custom property. * @cssprop {String} --text-format-font-letter-spacing - The format font letter spacing CSS custom property. * @cssprop {String} --text-format-font-line-height - The format font line height CSS custom property. * @cssprop {String} --text-format-font-size - The format font size CSS custom property. * @cssprop {String} --text-format-font-text-decoration - The format font text decoration CSS custom property. * @cssprop {String} --text-format-font-text-transform - The format font text transform CSS custom property. * @cssprop {String} --text-format-font-weight - The format font weight CSS custom property. * @cssprop {String} --text-format-gap - The format gap CSS custom property. * @cssprop {String} --text-format-padding-bottom - The format padding bottom CSS custom property. * @cssprop {String} --text-format-padding-left - The format padding left CSS custom property. * @cssprop {String} --text-format-padding-right - The format padding right CSS custom property. * @cssprop {String} --text-format-padding-top - The format padding top CSS custom property. * @cssprop {String} --text-format-shadow - The format shadow CSS custom property. * @cssprop {String} --text-format-shadow-blur - The format shadow blur CSS custom property. * @cssprop {String} --text-format-shadow-color - The format shadow color CSS custom property. * @cssprop {String} --text-format-shadow-offset-x - The format shadow offset x CSS custom property. * @cssprop {String} --text-format-shadow-offset-y - The format shadow offset y CSS custom property. * @cssprop {String} --text-format-shadow-spread - The format shadow spread CSS custom property. * @cssprop {String} --text-format-transition-duration - The format transition duration CSS custom property. * @cssprop {String} --text-format-transition-mode - The format transition mode CSS custom property. * @cssprop {String} --text-format-transition-property - The format transition property CSS custom property. * @cssprop {String} --text-format-translate - The format translate CSS custom property. * * @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