import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { TextAlignment } from '../../../Types/TextAlignment'; /** * Represents the `INumberElementProps` interface. * * @public */ export interface INumberElementProps extends IDisableableProps, IVariantableProps { number: number | null | undefined; readonly: boolean; alignment: TextAlignment; } //# sourceMappingURL=INumberElementProps.d.ts.map