import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputNumberFieldProps extends Omit, 'onChange' | 'onFocus' | 'onBlur' | 'onKeyDown' | 'value' | 'disabled'> { /** * Custom input element (when using asChild) */ children?: React.ReactNode; } /** * InputNumberField Component * * A composable component for the input field of an InputNumber. * Typically used within InputNumberWrapper. * * @public * * @example * ```tsx * * * * * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles value formatting, parsing, and keyboard navigation. */ export declare const InputNumberField: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputNumberField.d.ts.map