UNPKG

react-number-to-words

Version:
7 lines (6 loc) 182 B
import * as React from 'react'; interface NumberInputProps { onChange: (amount: number) => void; } declare const NumberInput: React.FC<NumberInputProps>; export { NumberInput };