/** * Parse markdown changelog content into a map of version -> body text. * Recognizes headings like `## [2.0.0] - 2024-01-15`, `## 1.0.0`, `## v3.0.0`. * Returns empty Map for non-changelog content. */ export declare function parseChangelogSections(content: string): Map;