import type { MDXFrontmatter } from "./types.js"; interface ParsedContent { frontmatter: MDXFrontmatter; content: string; } export declare function parseFrontmatter(content: string): Promise; export declare function extractExports(content: string): { frontmatter: MDXFrontmatter; content: string; }; export {}; //# sourceMappingURL=frontmatter-parser.d.ts.map