import * as React from 'react'; import { InputProps } from './index'; export type NumberInputProps = { onChange: (value: number) => void; noArrows?: boolean; } & Omit; /** * This component allows - and empty values as intermediery values * it calls change only with valid numeric values */ export declare const NumberInput: React.ForwardRefExoticComponent & React.RefAttributes>;