export type SkillsCliMcpParityDomain = "discovery" | "portable-skills" | "runtime" | "validation"; export interface SkillsCliMcpParityEntry { domain: SkillsCliMcpParityDomain; operation: string; cliCommands: string[]; mcpTools: string[]; jsonContracts: string[]; status: "matched" | "intentional-gap"; notes?: string; } export declare const SKILLS_CLI_MCP_PARITY: SkillsCliMcpParityEntry[]; export declare function validateSkillsCliMcpParity(): string[]; export declare function findSkillsParityForCliCommand(command: string): SkillsCliMcpParityEntry | undefined; export declare function findSkillsParityForMcpTool(tool: string): SkillsCliMcpParityEntry | undefined;