import { InjectionToken } from '@angular/core';
import { CartItem } from '../classes/cart-item';
/**
 * An injection token to resolve the class used to create CartItem instances
 */
export declare const CART_ITEM_CLASS: InjectionToken<CartItem>;
