import { ICommon } from './common'; type GwIdParams = { /** 网关 ID */ gwId?: string; } & ICommon; /** * 打开 ZigBee 网关面板配网子设备(旧版) * @param params - 网关参数 * @param params.gwId 网关 ID * @returns void * @public * @since @ray-js/ray 1.7.60 * @example * ```typescript * import { openPresentGatewayCategroy } from '@ray-js/ray'; * * const openGatewayCategory = async () => { * try { * await openPresentGatewayCategroy({ gwId: 'gateway_001' }); * console.log('已打开网关配网子设备页面'); * } catch (err) { * console.error('打开失败:', err); * } * }; * ``` * @deprecated 请使用 openDeviceGWSubSearchConfigure 代替 */ export declare function openPresentGatewayCategroy(params?: GwIdParams): Promise; /** * 打开网关面板搜索配网页面,用于搜索并添加子设备 * @param params - 网关参数 * @param params.gwId 网关 ID * @returns void * @public * @since @ray-js/ray 1.7.60 * @example * ```typescript * import { openDeviceGWSubSearchConfigure } from '@ray-js/ray'; * * const openSearchPage = async () => { * try { * await openDeviceGWSubSearchConfigure({ gwId: 'gateway_001' }); * console.log('已打开搜索配网页面'); * } catch (err) { * console.error('打开失败:', err); * } * }; * ``` */ export declare function openDeviceGWSubSearchConfigure(params?: GwIdParams): Promise; /** * 打开网关面板配网子设备帮助列表页面 * @param params - 网关参数 * @param params.gwId 网关 ID * @returns void * @public * @since @ray-js/ray 1.7.60 * @example * ```typescript * import { openDeviceGWSubHelpList } from '@ray-js/ray'; * * const openHelpList = async () => { * try { * await openDeviceGWSubHelpList({ gwId: 'gateway_001' }); * console.log('已打开配网帮助列表'); * } catch (err) { * console.error('打开失败:', err); * } * }; * ``` */ export declare function openDeviceGWSubHelpList(params?: GwIdParams): Promise; export {};