import type { TextAlignment } from '../../../Types/TextAlignment'; import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { IClearableProps } from '../../../Behaviors/Clearable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IInvalidableProps } from '../../../Behaviors/Invalidable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { UpDownSpinPosition } from '../../../Types/UpDownSpinPosition'; import type { NumberKeyboardMode } from '../../../Types/VirtualKeyboardMode'; import type { INumberUpDownElementProps } from '../../Primitives/Abstracts/UpDown/INumberUpDownElementProps'; /** * Represents the `INumberBoxElementProps` interface. * * @public */ export interface INumberBoxElementProps extends IValueableProps, IDisableableProps, IVariantableProps, ILabelableProps, IAppearanceableProps, IInvalidableProps, IBusyableProps, IClearableProps, INumberUpDownElementProps { value: number | null; readonly: boolean; required: boolean; autofocus: boolean; name: string; pattern: string; placeholder: string; autocomplete: boolean; keyboard: NumberKeyboardMode; spinPosition: UpDownSpinPosition; spinner: boolean; textAlign: TextAlignment; } //# sourceMappingURL=INumberBoxElementProps.d.ts.map