import { Product, ProductInCart } from "../interfaces";
export declare function useShoppingCart(): {
    shoppingCart: {
        [key: string]: ProductInCart;
    };
    onProductCountChange: ({ count, product, }: {
        count: number;
        product: Product;
    }) => void;
};
