export type FrontmatterResult = {
    index: number;
    line: number;
    html: string;
};
/**
 * @param {string} text
 * @returns {FrontmatterResult | null}
 */
export function parseFrontmatterContent(text: string): FrontmatterResult | null;
//# sourceMappingURL=frontmatter.d.ts.map