/** * QueryDoorLockRuleListParams - 查询门锁联动模版列表 */ type QueryDoorLockRuleListParams = { devId: string; }; /** * QueryDoorLockRuleListResponse - 查询门锁联动模版列表 */ type QueryDoorLockRuleListResponse = Record; /** * 查询门锁联动模版列表 * @param {QueryDoorLockRuleListParams} params - 查询门锁联动模版列表参数 * @returns {Promise} - 查询结果的 Promise */ declare const queryDoorLockRuleList: (params: QueryDoorLockRuleListParams) => Promise; /** * GetMessageServiceCountResponse - 获取短信剩余次数 */ type GetMessageServiceCountResponse = { packageStatus: string; expireDate: number; remainingTimes: number; packageDesc: string; }; /** * 获取短信剩余次数 * @returns {Promise} - 查询结果的 Promise */ declare const getMessageServiceCount: () => Promise; /** * GetPhoneServiceCountResponse - 获取电话剩余次数 */ type GetPhoneServiceCountResponse = { packageStatus: string; expireDate: number; remainingTimes: number; packageDesc: string; }; /** * 获取电话剩余次数 * @param {GetPhoneServiceCountParams} params - 获取电话剩余次数参数 * @returns {Promise} - 查询结果的 Promise */ declare const getPhoneServiceCount: () => Promise; export { queryDoorLockRuleList, getMessageServiceCount, getPhoneServiceCount };