import { onChangeArgs, ProductInCart } from "../interfaces/ProductCard";
export declare const useShoppingCart: () => {
    shopingCart: {
        [key: string]: ProductInCart;
    };
    handleShoppingCart: ({ producto, count }: onChangeArgs) => void;
};
