import type { z } from "zod"; import type { Phase, Tool } from "../../types"; import type { systemConfigSchema } from "./types"; /** * Create an agent from a markdown file */ export declare function createMarkdownAgent(markdownPath: string): Promise<{ phases: Phase[]; tools: Record; systemPrompt: string; systemConfig: z.infer; }>; //# sourceMappingURL=converter.d.ts.map