export interface FrontmatterParseResult { frontmatter: Record | null; frontmatterRaw: string | null; body: string; error?: string; } export declare function parseFrontmatter(content: string): FrontmatterParseResult;