import { GlobalProps } from '../../shared/global'; import { AnyAutocompleteField, AutocompleteProps } from '../../shared/autocomplete'; import { FieldDecorationProps, BaseTextFieldProps, NumberConstraintsProps } from '../../shared/input'; import { ExtractStrict } from '../../shared/utils'; export interface NumberFieldProps extends GlobalProps, BaseTextFieldProps, AutocompleteProps, NumberConstraintsProps, FieldDecorationProps { /** * Sets the virtual keyboard. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode * @default 'decimal' */ inputMode?: 'decimal' | 'numeric'; } export type NumberAutocompleteField = ExtractStrict;