import { ConfigManager, McpBridge, ContextStore } from '../../core/index.js'; export interface QueryInterfacesArgs { projectName?: string; projectId?: string; keyword?: string; tag?: string; limit?: number; } export interface QueryInterfacesContext { projectRoot: string; configManager: ConfigManager; mcpBridge: McpBridge; contextStore: ContextStore; } /** * 处理查询接口请求 */ export declare function handleQueryInterfaces(args: QueryInterfacesArgs, ctx: QueryInterfacesContext): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=query-interfaces.d.ts.map