/// import { ICartItem } from './types'; export interface ShoppingCartItemProps { isAllowedToDelete: boolean; cartItem: ICartItem; hasPaid?: boolean; onChangeQuantity: (cartItem: ICartItem, quantity: number) => void; onRemoveItem: (cartItem: ICartItem) => void; formatPrice: (price: string | number) => string; } declare const ShoppingCartItem: ({ onChangeQuantity, onRemoveItem, isAllowedToDelete, cartItem, hasPaid, }: ShoppingCartItemProps) => JSX.Element; export default ShoppingCartItem;