import React from 'react';
import './QuantityInput.scss';
interface QuantityInputProps {
    handleValue: (value: number) => void;
    flat?: boolean;
    limit?: number;
    loading?: boolean;
    onClick?: () => void;
    outOfStock?: boolean;
    small?: boolean;
    tooltip?: string;
    defaultValue: number;
}
export declare const QuantityInput: React.FC<QuantityInputProps>;
export {};
