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