import { InitialValues, onChangeArgs, Producto } from '../interfaces/ProductCard';
export interface useProductProps {
    producto: Producto;
    onChange?: (args: onChangeArgs) => void;
    value?: number;
    initialValues?: InitialValues;
}
declare const useProduct: ({ producto, onChange, value, initialValues }: useProductProps) => {
    counter: number;
    increaseBy: (amount: number) => void;
    reset: () => void;
    isMaxReached: () => boolean;
};
export default useProduct;
