import type { McpTransport } from '../contract.js'; interface JsonOpt { json: boolean; } /** Parsed `add` flags. Empty (all undefined) → compose from the global config. */ export interface McpAddSpec { transport?: McpTransport; url?: string; headers?: Record; command?: string; args?: string[]; env?: Record; } export declare function handleProfileMcpList(profileName: string, opts?: JsonOpt): Promise; export declare function handleProfileMcpAdd(profileName: string, server: string, spec: McpAddSpec): Promise; export declare function handleProfileMcpRemove(profileName: string, server: string): Promise; export {};