import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ slug: z.ZodString; }, "strip", z.ZodTypeAny, { slug: string; }, { slug: string; }>; interface Output { slug: string; path: string; warning: string; } /** * Flip the active workspace pointer. The state file is updated * immediately; future `cortex` invocations see the new workspace. * * Important: a running `cortex start` holds Engram + config in * memory from the workspace it started with. Switching via this * tool does NOT hot-reload — the daemon (and this MCP session) are * still looking at the old workspace's data until restart. The * output's `warning` field surfaces that so Claude can relay it. */ export declare const switchWorkspaceTool: McpTool; export {}; //# sourceMappingURL=switch-workspace.d.ts.map