import React from 'react'; export type InputCurrencyProps = { maxValue?: number; currencyPrefix: string; errorMessage?: string; testID?: string; onChangeAmount: (nextValue: number) => void; }; declare const InputCurrency: ({ maxValue, currencyPrefix, errorMessage, testID, onChangeAmount, }: InputCurrencyProps) => React.JSX.Element; export default InputCurrency;