/// import { ICartItem } from './types'; export interface ShoppingCartItemSectionProps { heading?: string; cartItems: ICartItem[]; shouldShowQuantity?: boolean; isAnyCartItemsQuantityModifiable?: boolean; isAllowedToDelete?: boolean; hasPaid?: boolean; onChangeQuantity: (item: any, quantity: number) => void; onRemoveItem: (item: any) => void; formatPrice: (price: string | number) => string; } export interface ShoppingCartItemGroupProps { cartItem: ICartItem; isAllowedToDelete?: boolean; hasPaid?: boolean; onChangeQuantity: (item: any, quantity: number) => void; onRemoveItem: (item: any) => void; formatPrice: (price: string | number) => string; } declare const ShoppingCartSection: ({ cartItems, isAllowedToDelete, hasPaid, onChangeQuantity, onRemoveItem, formatPrice, }: ShoppingCartItemSectionProps) => JSX.Element; export default ShoppingCartSection;