import { TextAlignment } from '../../../Types/TextAlignment'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { INumberElementProps } from './INumberElementProps'; declare const NumberElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Number - The number element is used to display a number. * * @description * TBD * * @element mosaik-number * @category Display * * @slot number - The number slot. * * @csspart number - The number part. * * @cssprop {String} --number-font-family - The font family CSS custom property. * @cssprop {String} --number-font-letter-spacing - The font letter spacing CSS custom property. * @cssprop {String} --number-font-line-height - The font line height CSS custom property. * @cssprop {String} --number-font-size - The font size CSS custom property. * @cssprop {String} --number-font-text-decoration - The font text decoration CSS custom property. * @cssprop {String} --number-font-text-transform - The font text transform CSS custom property. * @cssprop {String} --number-font-weight - The font weight CSS custom property. * @cssprop {String} --number-gap - The gap CSS custom property. * @cssprop {String} --number-padding-bottom - The padding bottom CSS custom property. * @cssprop {String} --number-padding-left - The padding left CSS custom property. * @cssprop {String} --number-padding-right - The padding right CSS custom property. * @cssprop {String} --number-padding-top - The padding top CSS custom property. * @cssprop {String} --number-shadow - The shadow CSS custom property. * @cssprop {String} --number-shadow-blur - The shadow blur CSS custom property. * @cssprop {String} --number-shadow-color - The shadow color CSS custom property. * @cssprop {String} --number-shadow-offset-x - The shadow offset x CSS custom property. * @cssprop {String} --number-shadow-offset-y - The shadow offset y CSS custom property. * @cssprop {String} --number-shadow-spread - The shadow spread CSS custom property. * @cssprop {String} --number-transition-duration - The transition duration CSS custom property. * @cssprop {String} --number-transition-mode - The transition mode CSS custom property. * @cssprop {String} --number-transition-property - The transition property CSS custom property. * @cssprop {String} --number-translate - The translate CSS custom property. * * @example * Setting number via JavaScript: * ```html * * * ``` * * @public */ export declare class NumberElement extends NumberElement_base implements INumberElementProps { private _number; private _readonly; private _alignment; /** * Constructs a new instance of the `NumberElement` class. * * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `number` property. * * @public */ get number(): number | null | undefined; set number(value: number | null | undefined); /** * Gets or sets the `readonly` property. * * @public * @attr */ get readonly(): boolean; set readonly(value: boolean); /** * Gets or sets the `alignment` property. * * Possible values are: * * `center` * * `justify` * * `left` * * `right` * * @public * @attr */ get alignment(): TextAlignment; set alignment(value: TextAlignment); } /** * @public */ export declare namespace NumberElement { type Props = INumberElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-number': NumberElement; } } export {}; //# sourceMappingURL=NumberElement.d.ts.map