import type { Logger } from "./mcp-http-handler.js"; export declare function patchClaudeMcpConfig(input: { current: Record; localMcpUrl: string; }): { updated: boolean; next: Record; }; export declare function patchCursorMcpConfig(input: { current: Record; localMcpUrl: string; }): { updated: boolean; next: Record; }; export declare function patchCodexConfigToml(input: { current: string; localMcpUrl: string; }): { updated: boolean; next: string; }; export declare function autoConfigureDetectedMcpClients(input: { localMcpUrl: string; logger?: Logger; homeDir?: string; }): Promise<{ updatedPaths: string[]; skippedPaths: string[]; }>;