import React from 'react'; import { InputGroupProps } from './InputGroup'; export interface MoneyInputGroupProps extends Omit, 'onChange' | 'type' | 'value'> { /** Custom parsing function when the value changes. */ parseFunc?: typeof parseInt | typeof parseFloat; } /** Input group for inputting money. */ declare const MoneyInputGroupWithRef: React.FunctionComponent; export default MoneyInputGroupWithRef;