import { FC } from 'react';
import { TextFieldInputProps } from '../../../TextField';
export type NumberFieldInputProps = TextFieldInputProps;
/**
* `NumberFieldInput` is the low-level input component used inside `NumberField`.
*
* It renders a numeric `` element based on `TextFieldInput` and connects
* it to the surrounding `NumberField` context.
*
* This component is intentionally **uncontrolled by default** and relies on
* the native input behavior for value management, enabling seamless integration
* with HTML forms and browser-level validation.
*
* `NumberFieldInput` is designed to be used only as a child of `NumberField`.
*/
export declare const NumberFieldInput: FC;