/** * @title: 根据商品生成加时列表 * @description: * @param {any} config * @param {number} price * @return {*} * @Author: zhiwei.Wang * @Date: 2024-07-01 09:34 */ export declare const getAddTimeSplits: (product: any, cacheItem: any, currentResourceTimeEndDate: any) => { label: any; value: any; price: any; }[]; /** * @title: 判断当前商品是否可用 * @description: * @param {any} relationProduct * @param {any} currentItem * @return {*} * @Author: zhiwei.Wang * @Date: 2024-07-01 09:33 */ export declare const isUsableProduct: (addTime: any, currentItem: any) => any; export declare const addTimeRowKey: { create: (product_id: number, time: number) => string; getValue: (str: string) => { product_id: number; time: number | string; }; };