/** * MCP stdio server module for pi-code-reasoning. * * Strictly import-passive: exports createMcpServerOptions and runServer * for callers. Stdio is started exclusively by bin/pi-code-reasoning.js * (which uses @feniix/bridgekit/bin-wrapper to import this module and * invoke runServer). Tests import the exports directly without side * effects. */ import { type CreateMcpServerOptions } from "@feniix/bridgekit/mcp"; export declare function createMcpServerOptions(): CreateMcpServerOptions; type RunMcpStdioServer = (options: CreateMcpServerOptions) => Promise; export declare function runServer(runMcpStdioServer?: RunMcpStdioServer): Promise; export {};