/** * get_component_info 工具实现 * @作者 li peng * @创建时间 2025-12-20 * @描述 获取 M8 UI 组件的详细信息 */ import type { ToolDefinition, ToolResult } from '../types/index.js'; /** * 工具定义 */ export declare const getComponentInfoDefinition: ToolDefinition; /** * 执行获取组件信息工具 * @param args 工具参数 * @returns 工具执行结果 */ export declare function executeGetComponentInfo(args: Record): Promise; //# sourceMappingURL=get-component-info.d.ts.map