import { IGetZigbeeLocalGroupDeviceList, IGetZigbeeLocalGroupDeviceListResponse, IGetZigbeeLocalGroupRelation, IGetZigbeeLocalGroupRelationResponse } from './interface'; /** * 获取 Zigbee 遥控器群组 localId 列表 * * @public * @since @ray-js/ray 1.5.2 * @param params - 请求参数 * @returns 包含 locals 数组的对象,每个元素包含 code、order、localId、categoryCode 信息 * @example 基础用法 * ```ts * import { getZigbeeLocalGroupRelation } from '@ray-js/ray'; * * getZigbeeLocalGroupRelation({ * devId: 'your_device_id', * }).then((response) => { * console.log('localId 列表:', response.locals); * }).catch((err) => { * console.error(err); * }); * ``` */ declare const getZigbeeLocalGroupRelation: (params: IGetZigbeeLocalGroupRelation) => Promise; /** * 获取可以加入 Zigbee 遥控器群组的设备列表 * * @public * @since @ray-js/ray 1.5.2 * @param params - 请求参数 * @returns 设备列表数组,每个元素包含 productId、devId、devOnline、devName 等设备信息 * @example 基础用法 * ```ts * import { getZigbeeLocalGroupDeviceList } from '@ray-js/ray'; * * getZigbeeLocalGroupDeviceList({ * devId: 'your_device_id', * meshId: 'gateway_mesh_id', * categoryCode: '7001', * homeId: 'your_home_id', * }).then((response) => { * console.log('设备列表:', response); * }).catch((err) => { * console.error(err); * }); * ``` */ declare const getZigbeeLocalGroupDeviceList: (params: IGetZigbeeLocalGroupDeviceList) => Promise; export { getZigbeeLocalGroupRelation, getZigbeeLocalGroupDeviceList };