import React from 'react'; import { InputGroupProps } from './InputGroup'; export interface NumberInputGroupProps extends Omit, 'onChange' | 'type' | 'value'> { /** Custom parsing function when the value changes. */ parseFunc?: typeof parseInt | typeof parseFloat; } /** Standard number input group. By default allows for float values. */ declare const NumberInputGroupWithRef: React.ComponentType; export default NumberInputGroupWithRef;