export declare const getdevicelist: (data: { /** 设备名称 */ deviceName: string; /** * 设备序列号 */ deviceSn: string; /** * 设备状态array */ deviceStatus: any[]; limit: number; start: number; }) => Promise; /** * 获取设备通道 * get /api/cr_atmp/api_fetch_mqtt_channel */ export declare const getchanneList: (data: { deviceSn: string; }) => Promise; /** * 获取远程命令列表 * get /api/cr_atmp/api_remote_command_getFavoriteShellList */ export declare const getFavoriteShellList: () => Promise; /** * 发送远程命令 * get * /api/cr_atmp/api_send_remote_command */ export declare const getremotecommand: (data: { /** 设备sn列表 */ snList: any[]; /** 通道id */ channelId: string; /** cmd详情 */ cmd: string; }) => Promise; /** * 获取远程命令的结果 * get * /api/cr_atmp/api_fetch_remote_command_result * */ export declare const getremotecommandresult: (data: { /** 设备sn列表 */ snList: any[]; /** 通道id */ messageId: string; }) => Promise;