export interface ParsedPlan { title: string; content: string; } /** * Parse a markdown plan file and extract title and content. * * @param filePath - Path to the plan markdown file * @returns ParsedPlan with title (from first h1 or filename) and full content * @throws Error if file is empty or cannot be read */ export declare function parsePlanFile(filePath: string): Promise; //# sourceMappingURL=plan-parser.d.ts.map