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