/** * ADR Frontmatter Parser (ADR-017) * * Parses bold-key frontmatter from ADR markdown files. * Pattern: **Key**: value * * @task T4792 */ import type { AdrFrontmatter, AdrRecord } from './types.js'; /** Extract ADR ID from filename (e.g., 'ADR-007-domain-consolidation.md' -> 'ADR-007') */ export declare function extractAdrId(filename: string): string; /** Parse bold-key frontmatter pattern: **Key**: value */ export declare function parseFrontmatter(content: string): AdrFrontmatter; /** Extract H1 title from markdown */ export declare function extractTitle(content: string): string; /** Parse a single ADR markdown file into an AdrRecord */ export declare function parseAdrFile(filePath: string, projectRoot: string): AdrRecord; //# sourceMappingURL=parse.d.ts.map