import type { TasksSummary } from './types.js'; /** * Parse a `tasks.md` file into structured progress data. * * Rules: * - Markdown headings (`#` ~ `######`) become section titles. Tasks without * a preceding heading land in a default section called `Tasks`. * - Checkboxes (`- [x]`, `- [X]`, `- [ ]`) at any indentation count. * - Section status: `done` when completed === total > 0, `active` when * completed > 0 and < total, otherwise `pending` (including total === 0). */ export declare function parseTasksMarkdown(content: string): TasksSummary; //# sourceMappingURL=task-parser.d.ts.map