import * as React from 'react';
interface NumberInputProps {
    onChange: (amount: number) => void;
}
declare const NumberInput: React.FC<NumberInputProps>;
export { NumberInput };
