import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * NumberField - Numeric input with optional decimal precision * Supports min/max/step constraints and configurable decimal precision */ export declare function NumberField({ value, onChange, field, readonly, ...props }: FieldWidgetComponentProps): React.JSX.Element;