import type { ScanOrderOrderProduct } from '../types'; /** * SkuDetailModal edit 确认后,将自定义商品 cacheItem 转为 `updateOrderProduct.updates`。 * 不经过 transformDetailToProductAndBooking;行定位由调用方传 unique_identification_number。 * * @example * const updates = buildCustomProductUpdatesFromEditedCacheItem(editedCacheItem, orderLine); * await updateItem({ ...pickIdentity(orderLine), product_id: null, updates }); */ export declare function buildCustomProductUpdatesFromEditedCacheItem(edited: Record, orderLine: ScanOrderOrderProduct): Record;