/** * Parse a page's leading YAML frontmatter block into a plain object. Returns an * empty object when there is no frontmatter; throws a located error on invalid * YAML so a typo surfaces with its filename instead of a blank page. */ export declare function parseFrontmatter(source: string, file: string): Record;