
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { z } from "zod";

//#region src/index.d.ts
declare const serverConfigSchema: z.ZodObject<{
  apiKey: z.ZodString;
}, z.core.$strip>;
declare const configSchema: z.ZodObject<{
  apiKey: z.ZodString;
}, z.core.$strip>;
type ServerConfig = z.infer<typeof serverConfigSchema>;
declare function createServer({
  config
}: {
  config: ServerConfig;
}): McpServer;
declare function runServer(): Promise<void>;
//#endregion
export { configSchema, createServer as default, runServer };
//# sourceMappingURL=index.d.mts.map