export interface QueryProductsByIdsParams { product_ids: number[]; schedule_date?: string; schedule_datetime?: string; } /** * 返回按 `sort` 倒序的商品列表;接口失败或返回异常结构时返回空数组(保持调用点简洁)。 */ export declare function queryProductsByIds(params: QueryProductsByIdsParams): Promise;