export declare const getResourceTimeIsUsable: (item: any, cacheItem: any, resourceItem: any) => any; export declare const getSumCapacity: ({ cacheItem }: any, isCalcQuantity?: boolean) => number; /** * @title: 查找是否有可用的time * @description: * @param {any} resourceItem * @return {*} * @Author: zhiwei.Wang * @Date: 2024-01-09 13:57 */ export declare const formatTimes: (resourceItem: any, cacheItem: any) => any; export declare const getErrorList: (resource: any, cacheItem: any) => { label: any; type: string; }[]; /** * @title: 格式化资源, 添加自定义参数 * @description: * @param {any} resourceItem * @return {*} * @Author: zhiwei.Wang * @Date: 2024-01-09 13:40 */ export declare const formatResource: (resourceItem: any, cacheItem?: any, formatLabel?: any) => any; export declare const getAppointmentTimingPreference: (state: any) => any; /** * @title: 创建服务的开始时间和结束时间 * @description: * @param {any} state * @param {any} item * @return {*} * @Author: zhiwei.Wang * @Date: 2024-01-26 14:09 */ export declare const getServiceStartTimeAndEndTime: (state: any, cacheItem: any, timeObj: any) => any; export declare const getIsNoSpecAndPackage: (product: any) => boolean;