/** * Copyright (c) 2026 ByteDance Ltd. and/or its affiliates * SPDX-License-Identifier: MIT * * feishu_chat tool -- 管理飞书群聊 * * Actions: * - search: 搜索对用户或机器人可见的群列表 * - get: 获取指定群的详细信息 * * Uses the Feishu IM v1 API: * - search: GET /open-apis/im/v1/chats/search * - get: GET /open-apis/im/v1/chats/:chat_id */ import type { OpenClawPluginApi } from 'openclaw/plugin-sdk'; export declare function registerChatSearchTool(api: OpenClawPluginApi): boolean;