UNPKG

@harvest-profit/npk

Version:
11 lines 419 B
import React from 'react'; import { InputProps } from '.'; interface NumberInputProps extends Omit<InputProps, 'value' | 'onChange'> { onChange?: (value?: number) => void; value?: number; type?: 'currency' | 'number' | 'percentage'; } declare const NumberInputWrapper: React.FC<NumberInputProps>; export default NumberInputWrapper; export type { NumberInputProps }; //# sourceMappingURL=NumberInput.d.ts.map