import type { McpSpawnConfig } from "../../packages/agent-spawn/dist/index.js"; import type { FileSystem } from "../utils/file-system.js"; export type McpSpawnInput = { content: string; filePath?: string; }; export declare function resolveMcpSpawnInput(input: string | undefined, fs: Pick, baseDir: string): Promise; export declare function parseMcpSpawnConfig(input?: McpSpawnInput): McpSpawnConfig | undefined;