/** A shopping cart */
export interface Cart {
    /** Cart identifier */
    cartId: string;
    /** Description of your cart */
    description: string;
    /** Expiration time */
    expire?: string;
    /** Items of your cart */
    items: number[];
    /** Indicates if the cart has already been validated */
    readOnly: boolean;
}
//# sourceMappingURL=Cart.d.ts.map