/** * @title: 获取活动列表 * @description: https://menutech.w.eolink.com/home/api-studio/inside/K2bI3n465fe7244b3dbd6679d87caedfbb0636bf8c29eda/api/3102494/detail/55349999?spaceKey=menutech * @param {any} params * @return {*} * @Author: zhiwei.Wang */ export declare const getEventListApi: (params: { event_item_resource_id: number | string; title?: string; skip?: number; num?: number; open_quotation: number; }) => Promise; export declare const getEventDetailIntroductionApi: (eventItemId: number | string) => Promise; export declare const getEventDetailTeacherApi: (params: { event_item_id: number | string; }) => Promise; export declare const getEventDetailBookingOptionsApi: (params: { ids: number | string; num: number; skip: number; customer_id?: number; open_quotation?: number; is_eject?: number; }) => Promise; export declare const getEventDetailSelectDateApi: (id: number | string, params: { days: number; start_date?: string; }) => Promise; /** * 批量查询指定商品的最新价格 * @param params */ export declare const getProductPrice: (params: { ids: number[]; customer_id: number; schedule_date?: string; }) => Promise; /** * 获取商品详情 * @param id 商品id * @param params 参数 * @returns */ export declare const getProductDetailApi: (id: number, params: { open_deposit?: string | number; front_end_cache_id?: string; }) => Promise;