/** * Parse a Changesets-generated `CHANGELOG.md` into structured releases. * * The shape Changesets writes is stable: * * # package-name * * ## 0.8.0 * * ### Minor Changes * * - 4a1b3d4: Add an announcement bar. … * * A second paragraph, indented two spaces. * * Parsing that rather than asking authors to write release notes twice means * the changelog can never fall behind what actually shipped. */ import type { ChangelogRelease } from '../core/changelog.js'; export declare function parseChangelog(markdown: string): ChangelogRelease[];