interface DocSections { frontmatter: string; frontmatterObj: Record; content: string; xml: string; } declare function parseDocSections(fileString: string): DocSections; declare function rebuildDocSections(sections: DocSections): string; declare function ensureTimestamps(meta: Record): void; export { type DocSections, ensureTimestamps, parseDocSections, rebuildDocSections };