import React from 'react';

interface IQuantityProps {
    value?: number | string | undefined;
    min?: number;
    max?: number;
    step?: number;
    placeholder?: string;
    maxLength?: number;
    disabled?: boolean;
    isInvalid?: boolean;
    onState?: (e: any) => void;
}
declare function ReactQuantityInput(props: IQuantityProps): React.JSX.Element;

export { type IQuantityProps, ReactQuantityInput };
