import { ConfigManager, McpBridge, ContextStore } from '../../core/index.js'; export interface ListProjectInterfacesArgs { shareId?: string; url?: string; projectName?: string; projectId?: string; } export interface ListProjectInterfacesContext { projectRoot: string; configManager: ConfigManager; mcpBridge: McpBridge; contextStore: ContextStore; } /** * 按层级结构列出项目的所有接口 */ export declare function handleListProjectInterfaces(args: ListProjectInterfacesArgs, ctx: ListProjectInterfacesContext): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; //# sourceMappingURL=list-project-interfaces.d.ts.map