import { z } from "zod"; import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { VibeUnivClient } from "../lib/api-client.js"; export declare const submitModuleSchema: { project_id: z.ZodString; learning_path_id: z.ZodString; module_order: z.ZodNumber; title: z.ZodString; description: z.ZodString; module_type: z.ZodEnum<["concept", "practical", "quiz", "project_walkthrough"]>; tech_name: z.ZodString; estimated_minutes: z.ZodOptional; concept_keys: z.ZodOptional>; content: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>; }; export declare function registerSubmitModule(server: McpServer, client: VibeUnivClient): void; //# sourceMappingURL=submit-module.d.ts.map