/** * @title: 套餐单规格信息 * @description: * @param {any} option * @return {*} * @Author: zhiwei.Wang * @Date: 2024-02-19 09:26 */ export declare const formatProductOption: (option: any) => any; /** * @title: 套餐信息 * @description: * @param {any} bundle * @return {*} * @Author: zhiwei.Wang * @Date: 2024-02-19 09:26 */ export declare const formatProductBundle: (bundle: any) => any; /** * @title: 格式化下单接口数据 * @description: * @param {any} state saledModel数据源 * @param {boolean} excludeDisabled 是否需要排除购物车中失效商品 * @Author: xiangfeng.xue * @Date: 2025-01-21 17:57 */ export declare const formatValues: (params: { state: any; platform: 'h5' | 'pc'; excludeDisabled?: boolean; extra?: Record; otherValue?: Record; }) => any; /** * @title: 获取拉开表单弹窗参数 * @param state */ export declare const getFormParams: (state: any) => { product_id: any; appointment_type: string; };