import type { OrderPosition } from '@unchainedshop/core-orders'; import type { User } from '@unchainedshop/core-users'; import type { Modules } from '../modules.ts'; export interface AddCartQuotationParams { orderId?: string; quotationId: string; quantity: number; configuration: { key: string; value: string; }[]; user: User; countryCode: string; context: unknown; } export declare function addCartQuotationService(this: Modules, params: AddCartQuotationParams): Promise;