import { default as React } from 'react'; import { TextFieldProps as MuiTextFieldProps } from '@mui/material/TextField'; import { CurrencyInputCopy } from '../../core'; type CurrencyInputProps = { allowDecimals?: boolean; amountIsRequired?: boolean; ariaLabel?: string; amount: string | number; copy?: CurrencyInputCopy; customValidate?: () => boolean; errorText?: string; label?: string; minAmount?: number; setAmount: (s: string) => void; setHasValidInput?: (b: boolean) => void; } & MuiTextFieldProps; declare const CurrencyInput: React.FC; export default CurrencyInput;