import { FC } from 'react';

interface IAmountInput {
    value: string;
    onChange: (value: string) => void;
    placeholder?: string;
    className?: string;
    disabled?: boolean;
}
declare const AmountInput: FC<IAmountInput>;

export { type IAmountInput, AmountInput as default };
