/** H2-header prefixes kept in a brief resume. Matched by PREFIX because some * rendered headers carry decorative suffixes (e.g. * "## State on handoff · pre-filled — verify, don't retype"). */ export declare const BRIEF_SECTION_PREFIXES: readonly ["## TL;DR", "## State on handoff", "## Carry-forward gotchas", "## Next action", "## Quick resume commands"]; /** * Return only the H2 sections whose header starts with one of `prefixes`, * preserving document order. If none match (e.g. a pre-1.5 / hand-authored * doc with none of the known anchors), return the full content unchanged — * we degrade toward MORE information, never an empty resume. */ export declare function extractBriefSections(content: string, prefixes?: readonly string[]): string; //# sourceMappingURL=brief.d.ts.map