export declare class ShoppingService {
    calculationType: string;
    prioritization: string;
    storeIdentifier: string;
    storeProvider: string;
    recipes: any[];
    products: any[];
    productExceptions: any[];
    constructor();
    getCart(customerToken: string, userId?: string): any;
}
