import React from 'react'; interface AmountLabelProps { label?: string | JSX.Element; auxiliarLabel?: string; availableAmount: number; denom: string; } interface AmountFieldProps extends AmountLabelProps { name: string; auxiliarLabel?: string; className?: string; } declare const AmountField: React.FC; export default AmountField;