import type { OrderPosition } from '@unchainedshop/core-orders'; import type { Modules } from '../modules.ts'; export interface RemoveCartItemParams { itemId: string; } export declare function removeCartItemService(this: Modules, params: RemoveCartItemParams): Promise;