import type { JsonObject, ParsedMarkdown } from './types'; /** * Parse markdown with frontmatter */ export declare function parse(content: string): ParsedMarkdown; /** * Stringify data to frontmatter markdown */ export declare function stringify(data: T, content: string, format?: 'yaml' | 'toml'): string; /** * Check if content has frontmatter */ export declare function hasFrontmatter(content: string): boolean; /** * Extract only the frontmatter (without parsing) */ export declare function extractFrontmatter(content: string): string | null;