export interface McpDependency { server: string; url: string; transport: "http" | "stdio"; matchedTools: string[]; configSnippet: string; } export interface SkillDependency { name: string; source: "body-reference" | "frontmatter"; } export declare function detectMcpDependencies(content: string): McpDependency[]; export declare function detectSkillDependencies(content: string): SkillDependency[];