import type { Server } from "../../tiny-stdio-mcp-server/dist/index.js"; import type { MemoryHandle } from "./handle.js"; export declare function startMemoryMcpServer(handle: MemoryHandle, opts: { allowWrites: boolean; }): Promise<{ stop: () => Promise; server: Server; }>; export declare function printMcpConfig(): string;