import { InputProps } from 'antd/es/input'; import { FC, IglooComponentProps } from '../types'; import './style/amount'; export interface AmountProps extends InputProps, IglooComponentProps { currency?: string; currencyProps?: InputProps; amount?: number; amountProps?: InputProps; seperator?: ',' | '.'; separator?: ',' | '.'; decimalSeparator?: ',' | '.'; } declare const Amount: FC; export default Amount;