import { ICartItem } from '../../model/types'; interface ICartListItemProps { item: ICartItem; canInc: boolean; onDelete: () => void; onIncrement: () => void; onDecrement: () => void; } export declare const CartListItem: ({ item, canInc, onDelete, onIncrement, onDecrement, }: ICartListItemProps) => import("react/jsx-runtime").JSX.Element; export {};