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. * * @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. * * Posible 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