import type { CartItem, CartOptions } from "../Cart/Cart.types.js"; export type CartProps = Omit; export interface CartQuantityChangeDetail { item: CartItem; quantity: number; } export interface CartRemoveDetail { itemId: string; } export interface CartCheckoutDetail { items: CartItem[]; total: number; } export declare function registerCartElement(): CustomElementConstructor | undefined; //# sourceMappingURL=cart.d.ts.map