/** * GetCloudServiceStatusNewParams - 查询设备下当前生效的订单状态参数 */ type GetCloudServiceStatusNewParams = { devId: string; }; /** * GetCloudServiceStatusNewResult - 查询设备下当前生效的订单状态结果 */ type GetCloudServiceStatusNewResult = Record; /** * 查询设备下当前生效的订单状态 * @param {GetCloudServiceStatusNewParams} params - 查询设备下当前生效的订单状态的参数 * @returns {Promise} - 带有查询设备下当前生效的订单状态结果的 Promise。 */ declare const getCloudServiceStatusNew: (params: GetCloudServiceStatusNewParams) => Promise; export { getCloudServiceStatusNew };