import React, { type ComponentProps } from 'react'; import { Currency } from '../../../types/index.js'; import { InputNumberStyled } from './style'; type InputProps = ComponentProps; export interface AmountInputBaseProps extends Omit { amountValue?: string; currencies: Currency[]; isCurrenciesLoading: boolean; currencyValue?: Currency; onChange?: (value: string) => void; hasError: boolean; helperText?: string; onCurrencyChange?: (currency: Currency) => void; onAmountChange?: (value: string) => void; onAmountBlur?: (value: string) => void; currencyError?: string; } declare const _default: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export default _default;