import { ConfigProps } from "../../pro/skuDetailModal/types.js"; //#region src/components/bigSale/selectionFlowConfig.d.ts /** BigSale 可选择的商品选择流程场景。 */ type BigSaleSelectionFlowScene = 'product-selection' /** @deprecated 使用 product-selection。 */ | 'appointment-booking'; /** * 为 BigSale 生成统一的商品 Selection Flow 配置。 * * 该配置只决定商品是否进入 Flow 以及使用哪些步骤,不包含 Kiosk、POS * 各自的弹窗尺寸和列数等展示参数,因此不同销售端可以安全复用。 * 调用方显式传入 steps / resolveSteps 时优先使用调用方配置。 */ declare function resolveBigSaleSelectionFlowConfig(scene: BigSaleSelectionFlowScene | undefined, config?: ConfigProps): ConfigProps | undefined; //#endregion export { BigSaleSelectionFlowScene, resolveBigSaleSelectionFlowConfig };