import { type CreateCartOptions } from '../../../api/create-cart/index.js'; import type { ContactDetails } from '@wix/auto_sdk_bookings_bookings'; export interface BuildCartParams { /** * One catalog item is emitted per booking id. Single-service and allDay * bookings produce one id; DAY-range expansion produces one per day. Per SDK * guidance, never use `multiServiceBooking._id` here; always feed the * per-day single-service booking IDs into the cart. */ bookingIds: string[]; contactDetails?: ContactDetails; /** `null` accepted so callers can forward SDK fields typed `string | null`. */ businessLocationId?: string | null; /** Optional app ID override for the catalog reference. Defaults to BOOKING_APP_ID. */ appId?: string; } export declare function buildCartRequest(params: BuildCartParams): CreateCartOptions;