import React from "react";
interface AmountInputProps {
    label: string;
    value: number;
    disabled?: boolean;
    min?: number;
    onChange?: (value: number) => void;
}
declare const AmountInput: React.FC<AmountInputProps>;
export default AmountInput;
