/** * Simple frontmatter parser for .mdc files * Parses YAML-like frontmatter without external dependencies */ export interface ParsedContent { frontmatter: Record; content: string; } /** * Parse frontmatter from content that may contain YAML frontmatter * Returns the parsed frontmatter object and the remaining content */ export declare function parseFrontmatter(input: string): ParsedContent;