import { type LoadOptions } from 'js-yaml'; /** * Parse frontmatter and content from a Markdown document. * * @param markdown - The Markdown document to parse. * @param options - YAML loading options. * @returns An object with frontmatter data and content. */ export declare function parse(markdown: string, options: LoadOptions): { matter: unknown; content: string; };