import React, { FC } from 'react'; declare type InputProps = Omit, 'max' | 'min'>; declare type Props = { allowDecimal?: boolean; allowNegative?: boolean; className?: string; id?: string; includeThousandsSeparator?: boolean; innerRef?: React.Ref; inputProps?: InputProps; padZeros?: boolean; size?: string; value?: string | number; } & InputProps; declare const CurrencyInput: FC; export default CurrencyInput;