export interface MCPRegistrationResult { claude: { success: boolean; message: string; }; gemini: { success: boolean; message: string; }; copilot: { success: boolean; message: string; }; } export declare function registerCodeCrewMCP(): Promise; export declare function checkMCPRegistration(): Promise<{ claude: boolean; gemini: boolean; copilot: boolean; }>;